summaryrefslogtreecommitdiff
path: root/source4/librpc
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-10-29 16:33:47 +0100
committerGünther Deschner <gd@samba.org>2008-10-31 02:44:32 +0100
commitd2cc4e63c570633c387f72cb977e3adcfc3a7ce8 (patch)
tree83d8886c933899a11a4e4a64e3e9b6a4dac27f6e /source4/librpc
parent8859e9a9042d94e73257137ae57b55ef418590cb (diff)
downloadsamba-d2cc4e63c570633c387f72cb977e3adcfc3a7ce8.tar.gz
samba-d2cc4e63c570633c387f72cb977e3adcfc3a7ce8.tar.bz2
samba-d2cc4e63c570633c387f72cb977e3adcfc3a7ce8.zip
s4-srvsvc: merge srvsvc_NetTransportEnum from s3 idl.
Guenther
Diffstat (limited to 'source4/librpc')
-rw-r--r--source4/librpc/idl/srvsvc.idl10
1 files changed, 7 insertions, 3 deletions
diff --git a/source4/librpc/idl/srvsvc.idl b/source4/librpc/idl/srvsvc.idl
index 1784fd9383..d636cdcea3 100644
--- a/source4/librpc/idl/srvsvc.idl
+++ b/source4/librpc/idl/srvsvc.idl
@@ -1285,14 +1285,18 @@ import "security.idl", "svcctl.idl";
[default];
} srvsvc_NetTransportCtr;
+ typedef struct {
+ uint32 level;
+ [switch_is(level)] srvsvc_NetTransportCtr ctr;
+ } srvsvc_NetTransportInfoCtr;
+
/******************/
/* Function: 0x1a */
WERROR srvsvc_NetTransportEnum(
[in,unique] [string,charset(UTF16)] uint16 *server_unc,
- [in,out] uint32 level,
- [in,out,switch_is(level)] srvsvc_NetTransportCtr transports,
+ [in,out,ref] srvsvc_NetTransportInfoCtr *transports,
[in] uint32 max_buffer,
- [out] uint32 totalentries,
+ [out,ref] uint32 *totalentries,
[in,out,unique] uint32 *resume_handle
);