diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-05-29 15:22:01 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-05-29 15:22:01 +1000 |
commit | 844a7ad15a8c91cbdfae3ead747c16eeae1e2f96 (patch) | |
tree | 7893443b806538159615208e037c1372feecaaa7 /source4 | |
parent | b9213316c77ab340fe02c9784f63a2f7d79cb492 (diff) | |
download | samba-844a7ad15a8c91cbdfae3ead747c16eeae1e2f96.tar.gz samba-844a7ad15a8c91cbdfae3ead747c16eeae1e2f96.tar.bz2 samba-844a7ad15a8c91cbdfae3ead747c16eeae1e2f96.zip |
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
(This used to be commit 1854ab058b42ce4530324cb8f40eb64e6e32267b)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/librpc/idl/ntp_signd.idl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/librpc/idl/ntp_signd.idl b/source4/librpc/idl/ntp_signd.idl index 0e1112c137..2b2fbc7662 100644 --- a/source4/librpc/idl/ntp_signd.idl +++ b/source4/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 { |