From 1854ab058b42ce4530324cb8f40eb64e6e32267b Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 29 May 2008 15:22:01 +1000 Subject: [PATCH] Add in an enum for two future NTP signing ops. I hope to extend this code to handle NTP clients getting authenticated time too. Andrew Bartlett --- source/librpc/idl/ntp_signd.idl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/librpc/idl/ntp_signd.idl b/source/librpc/idl/ntp_signd.idl index 0e1112c1379..2b2fbc76629 100644 --- a/source/librpc/idl/ntp_signd.idl +++ b/source/librpc/idl/ntp_signd.idl @@ -15,8 +15,9 @@ interface ntp_signd typedef [v1_enum] enum { SIGN_TO_CLIENT = 0, ASK_SERVER_TO_SIGN = 1, - SIGNING_SUCCESS = 2, - SIGNING_FAILURE = 3 + CHECK_SERVER_SIGNATURE = 2, + SIGNING_SUCCESS = 3, + SIGNING_FAILURE = 4 } ntp_signd_op; typedef [flag(NDR_BIG_ENDIAN),public] struct { -- 2.34.1