summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* r11958: - fixed memory leaks in the ldb_result handling in ldb operationsAndrew Tridgell2005-11-299-100/+108
| | | | - removed an unnecessary level of pointer in ldb_search structure
* r11957: fixed up code meant for debuggingAndrew Tridgell2005-11-291-3/+3
|
* r11956: removed the old rootdse.ldif, and the provision.js code that uses itAndrew Tridgell2005-11-292-35/+0
|
* r11955: got rid of the old rootDSE code in the ldap server.Andrew Tridgell2005-11-295-394/+0
| | | | | | The partitioning logic is still there, but we only have one partition. If we need partitioning in the future it might be better to remove this partitioning code and use a partitioning module instead
* r11954: add the static rootdse content to the sam ldb,and enable the rootdseAndrew Tridgell2005-11-291-1/+21
| | | | module in @MODULES
* r11953: enabled the rootdse module in the ldb modules codeAndrew Tridgell2005-11-291-0/+1
|
* r11952: added a rootdse module. This will replace the existing rootdse code inAndrew Tridgell2005-11-293-40/+202
| | | | | | the ldap server. The reason for the change is that ldb modules need some way to get at the static info stored in the rootDSE (such as the location of the schema) but they can't do that right now
* r11949: make sure we ask gensec to give us a session keyAndrew Tridgell2005-11-281-0/+2
| | | | | | | andrew, this answers your question on irc about whether the same session key mechanisms are used in smb2. They are - the RPC-LSA secret tests pass fine over ncacn_np on SMB2, which means the session key must be working
* r11941: fix cut'n'paste bugStefan Metzmacher2005-11-281-1/+1
| | | | metze
* r11940: Love has clarified why this code does what it does.Andrew Bartlett2005-11-282-8/+6
| | | | Andrew Bartlett
* r11931: Add a short README explaining what this directory is all about.Andrew Bartlett2005-11-271-0/+6
| | | | Andrew Bartlett
* r11930: Add socket/packet handling code for kpasswddAndrew Bartlett2005-11-273-5/+52
| | | | | | | | | | Allow ticket requests with only a netbios name to be considered 'null' addresses, and therefore allowed by default. Use the netbios address as the workstation name for the allowed workstations check with krb5. Andrew Bartlett
* r11929: Add static, comments.Andrew Bartlett2005-11-271-3/+3
| | | | Andrew Bartlett
* r11928: More Kerberos musings...Andrew Bartlett2005-11-271-20/+64
| | | | Andrew Bartlett
* r11913: if we have a UNIQUE name with more than 1 address,Stefan Metzmacher2005-11-251-0/+5
| | | | | | it becomes implicit an MHOMED record metze
* r11912: fix nbt_name_registration, there's still some minor stuff todo,Stefan Metzmacher2005-11-252-56/+134
| | | | | | | | e.g. to return the first address of the 0x1B address as first address in the 0x1C reply, and handle sgroup merge overflow of 25 addresses metze
* r11911: as we pass the owned_released vs. replica test now, run it with make ↵Stefan Metzmacher2005-11-251-0/+1
| | | | | | test metze
* r11910: fix nbt_name_release and nbt_name_query, so that we pass the ↵Stefan Metzmacher2005-11-251-20/+70
| | | | | | | | owned_released vs. replica winsrepl torture test metze
* r11908: implement SGROUP merging, that passes the different owner testsStefan Metzmacher2005-11-251-14/+222
| | | | | | | | (but only without socket_wrapper, I need to look at that later and then add the different_owner test to NBT-WINSREPLICATION-QUICK so that it'll be runned by make test) metze
* r11907: added testing of SMB2 keepaliveAndrew Tridgell2005-11-251-1/+6
|
* r11906: opcode 13 appears to be keepalive. Metze guessed this one :-)Andrew Tridgell2005-11-253-1/+70
|
* r11905: added SMB2_FLUSH as opcode 7. Thanks to metze and volker for helpAndrew Tridgell2005-11-256-1/+91
| | | | brainstorming this one.
* r11904: added smb2_tdis() testingAndrew Tridgell2005-11-251-1/+13
|
* r11903: added smb2_tdis() (opcode 4)Andrew Tridgell2005-11-252-1/+69
|
* r11902: added smb2_logoff() testingAndrew Tridgell2005-11-251-0/+13
|
* r11901: added smb2_logoff() support (metze correctly guessed opcode 2 wasAndrew Tridgell2005-11-253-1/+70
| | | | logoff)
* r11900: - make sure address and registered_by are replaced when they're not ↵Stefan Metzmacher2005-11-251-0/+9
| | | | | | | | present - make sure we don't add active records with 0 addresses metze
* r11899: add some usefull debug messages Stefan Metzmacher2005-11-251-0/+10
| | | | metze
* r11897: add 2 more sgroup vs. sgroup tests with the replica having no addressesStefan Metzmacher2005-11-251-1/+107
| | | | metze
* r11896: max_version of 0 means unlimitedStefan Metzmacher2005-11-251-0/+8
| | | | metze
* r11895: - reorder some code to make it easier to follow, how the fields ↵Stefan Metzmacher2005-11-254-10/+51
| | | | | | | | appear on the wire - add some comments to the header file, to represent the wire format metze
* r11894: fixed SMB2 trans code for pipe_flagsAndrew Tridgell2005-11-251-1/+1
|
* r11893: fixed a dependency problemAndrew Tridgell2005-11-251-1/+1
|
* r11892: forgot to commit these changesAndrew Tridgell2005-11-251-1/+2
|
* r11891: - added pipe_flags field in smb2_transAndrew Tridgell2005-11-254-4/+19
| | | | | | - while running dcerpc over SMB2, the server will occasionally send us a oh-so-useful STATUS_PENDING result meaning "I don't have a result for you yet, but I'm working on it". These can be discarded :-)
* r11890: added tests for the last few fields in SMB2 find requestsAndrew Tridgell2005-11-251-0/+16
|
* r11889: added support for dcerpc ncacn_np over SMB2. You use it by giving theAndrew Tridgell2005-11-256-22/+564
| | | | | flag 'smb2' in the dcerpc binding string. This gives a pretty good test to the new SMB2 trans call.
* r11888: - added SMB2 trans supportAndrew Tridgell2005-11-257-3/+143
| | | | | | - added session key to SMB2 - renamed 'unknown2' in create to 'impersonation'
* r11887: reorder some testsStefan Metzmacher2005-11-241-22/+99
| | | | metze
* r11885: Add forgotten filesVolker Lendecke2005-11-232-0/+10
|
* r11884: Download ntconfig.polVolker Lendecke2005-11-231-13/+171
|
* r11883: Also look up the membership in the domain local groups.Volker Lendecke2005-11-231-8/+83
| | | | Volker
* r11882: - use some better namesStefan Metzmacher2005-11-231-2/+7
| | | | | | - we now pass the same_owner tests so test them with make test metze
* r11881: fix debug messagesStefan Metzmacher2005-11-231-14/+5
| | | | metze
* r11880: - we finally start to apply replicas to our databaseStefan Metzmacher2005-11-231-47/+292
| | | | | | | - currently only the ADD, REPLACE and NOT REPLACE cases are handled complete - other cases are just skiped for now metze
* r11879: some fixes for the new ldb apiStefan Metzmacher2005-11-231-3/+3
| | | | metze
* r11878: don't get only newer records than the last one we gotStefan Metzmacher2005-11-231-1/+1
| | | | metze
* r11877: - give winsdb_add/modify/delete() ldb_context as first argumentStefan Metzmacher2005-11-234-53/+70
| | | | | | | | | | | and add a flags argument to add and modify,the current flags are: WINSDB_FLAG_ALLOC_VERSION to allocate a new version id for the record WINSDB_FLAG_TAKE_OWNERSHIP to take the become the wins owner of the record - fix handling of records with no addresses, this is valid for MHOMED and SGROUP records when they're not in ACTIVE state metze
* r11873: add some interval vars to the service contextStefan Metzmacher2005-11-232-0/+40
| | | | metze
* r11872: another attempt at fixing the data_blob_free in async dcerpc bind,Andrew Tridgell2005-11-231-14/+9
| | | | | after volker gently pointed out that I should be wearing a paper bag over my head for the last attempt :-)