diff options
author | Günther Deschner <gd@samba.org> | 2004-12-22 16:58:43 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:53:44 -0500 |
commit | 9aba116607c0b85a371c3556a6483bc662c769a3 (patch) | |
tree | 1226aeb6a22916e841504272e172d7c410369301 /source3/include | |
parent | 3312191867e97a7cf3d485c050c1e689ea574f6d (diff) | |
download | samba-9aba116607c0b85a371c3556a6483bc662c769a3.tar.gz samba-9aba116607c0b85a371c3556a6483bc662c769a3.tar.bz2 samba-9aba116607c0b85a371c3556a6483bc662c769a3.zip |
r4331: Implement SAMR query_dom_info-call info-level 8 server- and client-side,
based on samba4-idl.
This saves us an enormous amount of totally unnecessary ldap-traffic
when several hundreds of winbind-daemons query a Samba3 DC just to get
the fake SAM-sequence-number (time(NULL)) by enumerating all users, all
groups and all aliases when query-dom-info level 2 is used.
Note that we apparently never get the sequence number right (we parse a
uint32, although it's a uint64, at least in samba4 idl). For the time
being, I would propose to stay with that behaviour.
Guenther
(This used to be commit f9ab15a986626581000d4b93961184c501f36b93)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/rpc_samr.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/source3/include/rpc_samr.h b/source3/include/rpc_samr.h index c0c7e389e5..e3fbebaa77 100644 --- a/source3/include/rpc_samr.h +++ b/source3/include/rpc_samr.h @@ -537,6 +537,13 @@ typedef struct sam_unknown_info_7_info } SAM_UNK_INFO_7; +typedef struct sam_unknown_info_8_info +{ + UINT64_S seq_num; + NTTIME domain_create_time; + +} SAM_UNK_INFO_8; + typedef struct sam_unknown_info_12_inf { NTTIME duration; @@ -564,8 +571,7 @@ typedef struct sam_unknown_info_2_inf pointer is referring to */ - uint32 seq_num; /* some sort of incrementing sequence number? */ - uint32 unknown_3; /* 0x0000 0000 */ + UINT64_S seq_num; uint32 unknown_4; /* 0x0000 0001 */ uint32 unknown_5; /* 0x0000 0003 */ @@ -603,6 +609,7 @@ typedef struct sam_unknown_ctr_info SAM_UNK_INFO_5 inf5; SAM_UNK_INFO_6 inf6; SAM_UNK_INFO_7 inf7; + SAM_UNK_INFO_8 inf8; SAM_UNK_INFO_12 inf12; } info; |