summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-04-05 15:50:08 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-04-05 23:46:04 +0200
commit917b0a23a6d7c8f0926792ff51e718d793670d33 (patch)
tree2b0309d168d4ce5bf471184e83f872f1a66b3186 /librpc
parentb6a30be70266c07733ddfa2ae08d127e08560868 (diff)
downloadsamba-917b0a23a6d7c8f0926792ff51e718d793670d33.tar.gz
samba-917b0a23a6d7c8f0926792ff51e718d793670d33.tar.bz2
samba-917b0a23a6d7c8f0926792ff51e718d793670d33.zip
librpc/idl Add [nopython] to krb5pac ndrdump functions
These functions are not real RPC functions, but are used to help ndrdump operate. They don't need python bindings. Andrew Bartlett
Diffstat (limited to 'librpc')
-rw-r--r--librpc/idl/krb5pac.idl10
1 files changed, 5 insertions, 5 deletions
diff --git a/librpc/idl/krb5pac.idl b/librpc/idl/krb5pac.idl
index d7a99c9909..fcd32c63a7 100644
--- a/librpc/idl/krb5pac.idl
+++ b/librpc/idl/krb5pac.idl
@@ -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
);