diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-11-18 12:20:16 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:46:26 -0500 |
commit | 509be8d902038ec2a75ece5fd28d43d73218f0b2 (patch) | |
tree | 6096ab41cfabb48aa510440055c69622705ed96e /source4/librpc/idl | |
parent | d5f37ecf94e2b63511102b3fd34c0e7bcd8d7879 (diff) | |
download | samba-509be8d902038ec2a75ece5fd28d43d73218f0b2.tar.gz samba-509be8d902038ec2a75ece5fd28d43d73218f0b2.tar.bz2 samba-509be8d902038ec2a75ece5fd28d43d73218f0b2.zip |
r11781: rename tree to tcons to match the sessions substructure of smbsrv_connection
metze
(This used to be commit acd3e644e030a3544ddc6cdcd4e0ec9617732cba)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/irpc.idl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/librpc/idl/irpc.idl b/source4/librpc/idl/irpc.idl index 8c14982fbf..27eccf9a33 100644 --- a/source4/librpc/idl/irpc.idl +++ b/source4/librpc/idl/irpc.idl @@ -66,7 +66,7 @@ ******************************************************/ typedef [v1_enum] enum { SMBSRV_INFO_SESSIONS, - SMBSRV_INFO_TREES + SMBSRV_INFO_TCONS } smbsrv_info_level; typedef struct { @@ -87,16 +87,16 @@ astring share_name; astring client_ip; NTTIME connect_time; - } smbsrv_tree_info; + } smbsrv_tcon_info; typedef struct { - uint32 num_trees; - [size_is(num_trees)] smbsrv_tree_info *trees; - } smbsrv_trees; + uint32 num_tcons; + [size_is(num_tcons)] smbsrv_tcon_info *tcons; + } smbsrv_tcons; typedef union { [case(SMBSRV_INFO_SESSIONS)] smbsrv_sessions sessions; - [case(SMBSRV_INFO_TREES)] smbsrv_trees trees; + [case(SMBSRV_INFO_TCONS)] smbsrv_tcons tcons; } smbsrv_info; void smbsrv_information( |