summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2021-08-25 14:11:28 +0200
committerAndreas Schneider <asn@cryptomilk.org>2022-07-28 11:51:28 +0000
commit308f89ce6a95e8566bc5f4d1c633a5d9ac11958c (patch)
tree0a77925d4655833c0c3b630f4b537d246ec5eb7d /librpc
parente845afe11aa2ac1bd9abdd3e052487602d5656c0 (diff)
downloadsamba-308f89ce6a95e8566bc5f4d1c633a5d9ac11958c.tar.gz
samr:idl: add samr_SupportedFeatures for samr_Connect5()
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r--librpc/idl/samr.idl9
1 files changed, 8 insertions, 1 deletions
diff --git a/librpc/idl/samr.idl b/librpc/idl/samr.idl
index ab9d6d763e8..d897047ea87 100644
--- a/librpc/idl/samr.idl
+++ b/librpc/idl/samr.idl
@@ -1479,9 +1479,16 @@ import "misc.idl", "lsa.idl", "security.idl";
/************************/
/* Function 0x40 */
+ typedef [v1_enum] enum {
+ SAMR_CONNECT_FEATURE_RID_ONLY = 0x00000001,
+ SAMR_CONNECT_FEATURE_RESRVED1 = 0x00000002,
+ SAMR_CONNECT_FEATURE_RESRVED2 = 0x00000004,
+ SAMR_CONNECT_FEATURE_USE_AES = 0x00000010
+ } samr_SupportedFeatures;
+
typedef struct {
samr_ConnectVersion client_version; /* w2k3 gives 3 */
- uint32 unknown2; /* w2k3 gives 0 */
+ samr_SupportedFeatures supported_features;
} samr_ConnectInfo1;
typedef union {