Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-09-24 | s4-drs: fixed the size of DN binary blobs on the wire | Andrew Tridgell | 1 | -1/+1 | |
Comparison with w2k8 traces shows the size field of drsuapi_DsReplicaObjectIdentifier3Binary is taken from drsuapi_DsReplicaObjectIdentifier3 Thanks to metze for spotting this | |||||
2009-09-23 | idl: regenerate idl | Anatoliy Atanasov | 2 | -3/+11 | |
2009-09-23 | s4: Handle DRSUAPI_DS_REPLICA_NEIGHBOUR_CRITICAL_ONLY req in getncchanges | Anatoliy Atanasov | 1 | -2/+6 | |
2009-09-23 | Revert "r20074: this values seem to be typos in drsuapi" | Stefan Metzmacher | 1 | -2/+2 | |
This reverts commit 1dfd365d57dcd712d315a1a903c8d3d0a0f0fc12 This change was from and the flags I was seeing have another meaning. metze Signed-off-by: Anatoliy Atanasov <anatoliy.atanasov@postpath.com> | |||||
2009-09-23 | regenerate IDL | Andrew Tridgell | 4 | -60/+62 | |
2009-09-23 | idl: fixed string termination for netlogon GetDomainInfo | Andrew Tridgell | 1 | -10/+10 | |
2009-09-23 | s4-nbt: added NBT_SERVER_DNS_FOREST | Andrew Tridgell | 1 | -1/+2 | |
2009-09-20 | librpc: rerun 'make idl' | Stefan Metzmacher | 2 | -3/+3 | |
metze | |||||
2009-09-20 | drsblobs.idl: fix repsFromTo2 blob size calculation | Stefan Metzmacher | 1 | -1/+1 | |
metze | |||||
2009-09-20 | rerun: make idl | Stefan Metzmacher | 3 | -0/+324 | |
metze | |||||
2009-09-20 | drsblobs.idl: add decoding for repsFromTo2 | Stefan Metzmacher | 1 | -0/+30 | |
This is used in windows 2008. metze | |||||
2009-09-18 | librpc: rerun 'make idl' | Stefan Metzmacher | 3 | -0/+353 | |
metze | |||||
2009-09-18 | named_pipe_auth.idl: add infrastructure to pass delegated credentials | Stefan Metzmacher | 1 | -0/+23 | |
metze | |||||
2009-09-17 | ndrdump: fixed help | Andrew Tridgell | 1 | -1/+1 | |
2009-09-17 | ndr: num_auths is an array size, thus a uint3264 | Andrew Tridgell | 1 | -2/+2 | |
2009-09-17 | ndr: split out ndr enum functions | Andrew Tridgell | 3 | -4/+78 | |
This allows for easier implementation of the NDR32/NDR64 split | |||||
2009-09-17 | idl: recompile our IDL | Andrew Tridgell | 25 | -3558/+3558 | |
The NDR64 change affects every IDL file | |||||
2009-09-17 | s4-rpc: added NDR64 support | Andrew Tridgell | 1 | -1/+2 | |
This adds support for the nd464 binding string option | |||||
2009-09-17 | ndr: added support for NDR64 | Andrew Tridgell | 3 | -18/+54 | |
This adds NDR64 support for the push functions in libndr | |||||
2009-09-17 | Re-generated idl files with () for enum values. | Jeremy Allison | 23 | -1014/+1014 | |
Jeremy. | |||||
2009-09-17 | Check in modified generated files for systems where pidl can't run. | Jeremy Allison | 23 | -1014/+1014 | |
Jeremy. | |||||
2009-09-17 | Remove ununsed variable warning. | Jeremy Allison | 1 | -1/+0 | |
Jeremy. | |||||
2009-09-17 | idl: added DRS GetNCChanges level 10 | Andrew Tridgell | 4 | -0/+209 | |
2009-09-17 | idl: rebuild drsuapi.idl | Andrew Tridgell | 5 | -51/+258 | |
2009-09-17 | idl: added DsExecuteKCC IDL | Andrew Tridgell | 1 | -1/+19 | |
2009-09-16 | ndr: added --ndr64 flag to ndrdump | Andrew Tridgell | 4 | -6/+44 | |
This only does pull, but it is useful for w2k8-r2 <-> w2k8-r2 ndrdump usage, which is always 64bit. | |||||
2009-09-16 | security:idl Generated files | Nadezhda Ivanova | 3 | -0/+66 | |
Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2009-09-16 | Owner and group defaulting. | Nadezhda Ivanova | 1 | -0/+34 | |
Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2009-09-16 | s3-ntlmssp: add missing prototype. | Günther Deschner | 2 | -2/+3 | |
Guenther | |||||
2009-09-16 | s3-schannel: add dump_NL_AUTH_SIGNATURE. | Günther Deschner | 2 | -1/+38 | |
Guenther | |||||
2009-09-15 | ntlmssp: pretty print a VERSION structure. | Günther Deschner | 6 | -19/+21 | |
Guenther | |||||
2009-09-15 | ntlmssp: better document to what structures we are reffering to. | Günther Deschner | 1 | -3/+25 | |
Guenther | |||||
2009-09-14 | schannel: remove unused schannel structs. | Günther Deschner | 4 | -344/+0 | |
Guenther | |||||
2009-09-12 | s4-ndr: fixed memory leaks in ndr_pull_*_blob() | Andrew Tridgell | 2 | -9/+26 | |
We needed to free the ndr structures, both on error and normal return | |||||
2009-09-11 | netlogon.idl - rerun "make idl" | Matthias Dieter Wallnöfer | 2 | -3/+23 | |
2009-09-11 | s4: Fix parsing of CSDVersion: treat this field as an string null terminated. | Matthieu Patou | 1 | -1/+1 | |
CDSVersion field contains one utf16 string and then garbage which pertubated the parsing. We use subcontext to clearly define the size of the whole blob and then let the parser to find the real length of the string. This is a fix for bug 6706, many thanks to Gunter for the PIDL guidelines. | |||||
2009-09-11 | s4-idl: added the IDL for the DsReplica* calls | Andrew Tridgell | 6 | -168/+1076 | |
2009-09-11 | lsa: fill in more unknowns in lsa_LookupSid calls. | Günther Deschner | 6 | -98/+186 | |
Guenther | |||||
2009-09-11 | netlogon.idl: indent correctly | Matthias Dieter Wallnöfer | 1 | -1/+1 | |
2009-09-11 | lsa: use lsa_LookupNamesLevel in lsa_LookupSids{2,3}. | Günther Deschner | 5 | -27/+27 | |
Guenther | |||||
2009-09-11 | schannel: more work on reponse NL_AUTH_MESSAGES. | Günther Deschner | 6 | -1/+96 | |
Guenther | |||||
2009-09-10 | s4: regenerate drsuapi IDL | Andrew Tridgell | 2 | -0/+24 | |
2009-09-10 | s4/drsuapi: tech the IDL about some more key attribute names | Andrew Tridgell | 1 | -0/+8 | |
2009-09-09 | s4: fixed format of repsTo in samdb | Andrew Tridgell | 4 | -301/+0 | |
Metze pointed out what the windows tool ldp.exe will examine repsTo attributes on remote DCs, so we do in fact need to use the same format that windows uses. This patch changes the server side implementation of UpdateRefs to use the windows format | |||||
2009-09-09 | ntlmssp: avoid duplicate inclusion of helper headers. | Günther Deschner | 1 | -1/+0 | |
Guenther | |||||
2009-09-08 | ntlmssp: add some void decode calls (useful for ndrdump). | Günther Deschner | 4 | -2/+304 | |
Guenther | |||||
2009-09-08 | schannel: add missing prototype for ndr_print_nbt_string() in schannel helper. | Günther Deschner | 1 | -0/+1 | |
Hopefully fixes samba4 build. Guenther | |||||
2009-09-08 | schannel: add NL_AUTH_MESSAGE and both NL_AUTH_SIGNATURE structs. | Günther Deschner | 6 | -0/+698 | |
These actually belong netlogon but we for now want to keep netlogon as a security providor separate. Guenther | |||||
2009-09-08 | s4:idl Add generated code for netlogon.idl changes | Andrew Bartlett | 3 | -3/+39 | |
2009-09-08 | Return a correct value for Supported Encryption Type | Matthieu Patou | 1 | -1/+9 | |
Vista and upper version use this value to check wether they should ask the DC to change the msDS-SupportedEncryptionTypes attribute or not. Declare the different value as a bitmap in Netlogon idl |