librpc/idl Add [nopython] to krb5pac ndrdump functions
authorAndrew Bartlett <abartlet@samba.org>
Tue, 5 Apr 2011 05:50:08 +0000 (15:50 +1000)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 5 Apr 2011 21:46:04 +0000 (23:46 +0200)
These functions are not real RPC functions, but are used to help
ndrdump operate.  They don't need python bindings.

Andrew Bartlett

librpc/idl/krb5pac.idl

index d7a99c99093b268dce81521bb964687791e725c8..fcd32c63a7233a2996508be86873bb27dc1a9ace 100644 (file)
@@ -110,23 +110,23 @@ interface krb5pac
                [flag(NDR_REMAINING)] DATA_BLOB ChecksumAndSignature;
        } PAC_Validate;
 
-       void decode_pac(
+       [nopython] void decode_pac(
                [in] PAC_DATA pac
                );
 
-       void decode_pac_raw(
+       [nopython] void decode_pac_raw(
                [in] PAC_DATA_RAW pac
                );
 
-       void decode_login_info(
+       [nopython] void decode_login_info(
                [in] PAC_LOGON_INFO logon_info
                );
 
-       void decode_login_info_ctr(
+       [nopython] void decode_login_info_ctr(
                [in] PAC_LOGON_INFO_CTR logon_info_ctr
                );
 
-       void decode_pac_validate(
+       [nopython] void decode_pac_validate(
                [in] PAC_Validate pac_validate
                );