summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2007-10-10r19861: Add simple pkg-config replacement.Jelmer Vernooij1-0/+130
(This used to be commit a42220c35673317c637e27d59c1a307bedb711a6)
2007-10-10r19859: Reuse referrent ids when pushing full pointers (still need toJelmer Vernooij4-4/+51
avoid pushing the referred object twice) and add test for full pointers. (This used to be commit 1638c8d234dbc85298000685e49570f23dfd0bf8)
2007-10-10r19856: Use sptr as basis for full ptr implementation. Will add checks for ↵Jelmer Vernooij4-22/+13
duplicates later. (This used to be commit 006ab1d4a449c81680add57e0116a86b8317fbfb)
2007-10-10r19855: toplevel pointers are 'ref' by default:Stefan Metzmacher1-14/+14
- we don't need to add 'ref' explicit - we some toplevel pointers need to be 'ptr' ('sptr' for now) pointers metze (This used to be commit c95cd82de29f4102d72030780da785bf28e0de9e)
2007-10-10r19854: readd support for 'sptr' pointers, to work against windows serversStefan Metzmacher1-3/+4
until jelmer commits his 'ptr' support metze (This used to be commit f5aa620b1bc5b0da866cbdb71947ef25a4bae0ad)
2007-10-10r19850: Fix IDL warnings.Jelmer Vernooij2-6/+6
(This used to be commit 92b8bde561277a6b83048ce003cc29ff1b380255)
2007-10-10r19847: add idl for DsRemoveDSServer(), this is used when a server unbecomes ↵Stefan Metzmacher2-4/+27
a DC metze (This used to be commit df133cd22a350d422c49844e50a67f4cc1fb61e4)
2007-10-10r19846: Fix bunch of IDL warnings.Jelmer Vernooij9-26/+18
(This used to be commit 48e6df59444a78dc268b84c5f94787de09d41908)
2007-10-10r19845: Add warning for pointer_default_top()Jelmer Vernooij1-1/+2
(This used to be commit 3f0da2388d30959c93483b102fbfab75a8381fef)
2007-10-10r19844: Fix warnings and errors in epmapper IDL.Jelmer Vernooij5-19/+22
(This used to be commit 0221d5b6c4250a3a2c86c623c534996d7decb1f6)
2007-10-10r19843: Fix warning.Jelmer Vernooij1-1/+0
(This used to be commit 38067c1adf0f9c3974302a8481e23b6a63eb6d42)
2007-10-10r19842: Complain about unknown pointer types.Jelmer Vernooij1-3/+8
Fallback to "unique" when "ptr" is specified instead of failing. (This used to be commit a1b6308b21f3c38ffd4db4643a5e307fbf32a569)
2007-10-10r19836: Fix warnings in some IDL files.Jelmer Vernooij4-19/+18
(This used to be commit bd48f78b1d6dba73e44630ad930fd6089d2076b2)
2007-10-10r19834: Prevent some inaccurate warnings.Jelmer Vernooij1-2/+3
(This used to be commit 21efd2bdb8df8e709259d429fc3ff35eaa332d02)
2007-10-10r19832: better prototypes for the linearization functions:Simo Sorce51-188/+170
- ldb_dn_get_linearized returns a const string - ldb_dn_alloc_linearized allocs astring with the linearized dn (This used to be commit 3929c086d5d0b3f08b1c4f2f3f9602c3f4a9a4bd)
2007-10-10r19831: Big ldb_dn optimization and interfaces enhancement patchSimo Sorce80-1118/+1550
This patch changes a lot of the code in ldb_dn.c, and also removes and add a number of manipulation functions around. The aim is to avoid validating a dn if not necessary as the validation code is necessarily slow. This is mainly to speed up internal operations where input is not user generated and so we can assume the DNs need no validation. The code is designed to keep the data as a string if possible. The code is not yet 100% perfect, but pass all the tests so far. A memleak is certainly present, I'll work on that next. Simo. (This used to be commit a580c871d3784602a9cce32d33419e63c8236e63)
2007-10-10r19830: Warn about non-ref top-level pointers.Jelmer Vernooij1-4/+5
(This used to be commit 78153200ac45ce7333c91c48ded549b5eed5e077)
2007-10-10r19829: Update documentation.Jelmer Vernooij1-4/+4
(This used to be commit 9d3c3ce540d6d9fbead201f4793339a1600c453e)
2007-10-10r19805: Add the (harmless, but apparently default)Andrew Bartlett3-2/+10
NTLMSSP_NEGOTIATE_ALWAYS_SIGN flags into the default set. Andrew Bartlett (This used to be commit 04709c75afda0234c7236fba674bf53a265f8dbb)
2007-10-10r19790: Check in the PIDL change and the converted unixinfo and winbind ↵Volker Lendecke2-11/+35
pipes without waiting for comments. This is what version control is for, and it does fix a segfault I ran into ;-) Nevertheless, Jelmer & Jerry, please take a look! Thanks, Volker (This used to be commit 10dcaf89ed07b9d5d1c89da33b50fcaadead32b2)
2007-10-10r19761: This may need work, but here is an initial implementation ofAndrew Bartlett1-1/+64
DsWriteAccountSpn(). It passes the client toture test. Andrew Bartlett (This used to be commit a1e80eeb9561a856ac5aa1f5a991dcd648b152ff)
2007-10-10r19760: Create a DC account for the drsuapi tests to work on, rather thanAndrew Bartlett3-14/+74
choosing an existing DC. Allow to skip some tests under Samba4. Andrew Bartlett (This used to be commit 705fbae325267fd0ed11f463f954f8e45802d6d5)
2007-10-10r19759: Allow a join to occour against ncacn_ip_tcp again (useful for tortureAndrew Bartlett1-7/+28
tests). The issue is that Win2k3 SP1 will not answer many LSA requests on that port (I think this is as a security measure). In this case, we need to skip ahead in the composite functions. We were also checking the wrong variable to determine sucess/failure of the LsaOpenPolicy2. Andrew Bartlett (This used to be commit 67c191305fa97470017e7e8a5b55fc0949d432ad)
2007-10-10r19757: Don't do the strrchr twice. Pointed out by Martin Kuhl.Andrew Bartlett1-1/+1
Andrew Bartlett (This used to be commit c4bf9cc09b36d8dcc465608b55bbf5dc07aed9e4)
2007-10-10r19753: verify result of received request before sending the next one.Rafal Szczesniak1-0/+1
I don't know why I forgot this... rafal (This used to be commit d5f7141a6c76d80d564500d59fd07cc8edb8127d)
2007-10-10r19752: Remove support for the `depends' attribute (use "import") instead.Jelmer Vernooij5-20/+0
(This used to be commit 324395afc725e90f44f286fd776b38a64bdc8e3b)
2007-10-10r19751: Add some tests for parsing the "include", "import" and "importlib" ↵Jelmer Vernooij1-1/+9
statements. (This used to be commit 3a850bda962da9ce58227ea6d74e974f7654d734)
2007-10-10r19743: merge from samba3:Stefan Metzmacher4-500/+1
remove old unused schema module metze (This used to be commit 3c16951b0d88013b34a0213ced79087653713ddf)
2007-10-10r19742: fix compiler warningsStefan Metzmacher1-4/+8
metze (This used to be commit 4edeef56dcd185869812bf622c5b496360eb6223)
2007-10-10r19740: fix compiler warningStefan Metzmacher1-1/+1
metze (This used to be commit 666e674504c514033390bf69746fb3c35baf4b2a)
2007-10-10r19738: tp3 is already released, so we have tp4-svn nowStefan Metzmacher1-1/+1
metze (This used to be commit e5671b75f2deab2d7979e5c394a942a511082f67)
2007-10-10r19737: - add some more CLDAP rootdse testsStefan Metzmacher1-9/+26
- don't ignore CLDAP rootdse errors anymore metze (This used to be commit 712577d9e284445e9257b691aefb719511d6a57c)
2007-10-10r19736: handle rootdse call via CLDAPStefan Metzmacher4-15/+219
metze (This used to be commit 39dc94b219355ba774b309e26f1d93070d9d080b)
2007-10-10r19735: report the LDAP error code in the CLDAP replies to the callerStefan Metzmacher1-3/+7
metze (This used to be commit f4a6fade3a3113732ef66433c5739657f0bfdbee)
2007-10-10r19734: display LDAP error code nicerStefan Metzmacher1-6/+47
metze (This used to be commit a0a45c3326560b9b31d0e17f1439d2638e91aee0)
2007-10-10r19733: More work to fix ldb_map. With the wildcard present,Andrew Bartlett1-6/+2
map_attr_find_local() always returns, which is exactly what we don't want. Instead, rely on the overwrite behaviour. Andrew Bartlett (This used to be commit 9b9b7bae16a635d9a9ba72d21a4a4718d294c9b0)
2007-10-10r19732: The 'res' from ldb_search is only valid if the call returns LDB_SUCCESS.Andrew Bartlett2-4/+7
This seems to show up (as an abort() from talloc) particularly under ldb_ildap. Andrew Bartlett (This used to be commit 9890af534d845d471d2a98268c408a907b29e016)
2007-10-10r19731: Modify the ldb_map infrustructure to always map from requestedAndrew Bartlett7-78/+263
attributes to backend (remote) attributes. We can't do a reverse mapping safely where the remote attribute may be a source for multiple local attributes. (We end up with the wrong attributes returned). In doing this, I've modified the samba3sam.js test to be more realistic, and fixed some failures in the handling of primaryGroupID. I've added a new (private) helper function ldb_msg_remove_element() to avoid a double lookup of the element name. I've also re-formatted many of the function headers, to fit into standard editor widths. Andrew Bartlett (This used to be commit 186766e3095e71ba716c69e681592e217a3bc420)
2007-10-10r19729: - split basedn related tests to a new functionStefan Metzmacher1-7/+27
- and add some 'netlogon' attriubte related tests metze (This used to be commit d643c3cc5cd4547dbb7cead768993a9abee4e2eb)
2007-10-10r19727: make it possible to run the ldap.js tests against non global catalog ↵Stefan Metzmacher1-35/+46
servers metze (This used to be commit 463ed4c0040f52ef2b06337e122aac325ec01026)
2007-10-10r19726: when a client explicit asks for the 'netlogon' attriubute on LDAPStefan Metzmacher1-0/+9
the result entry is skipped! metze (This used to be commit 62aa73f3d56596780fc82fecbc99c688ecbf5b08)
2007-10-10r19724: add a helper functions to return an CLDAP errorStefan Metzmacher2-5/+37
metze (This used to be commit 0a1ecb911656f8170708ce13e1183557fe118794)
2007-10-10r19723: don't use [,],(,) in test names to make the build-farm output happyStefan Metzmacher1-5/+5
metze (This used to be commit 8a0a92e2dc107797055421196f430269699510fe)
2007-10-10r19722: fix memory leaks and hierachie bugsStefan Metzmacher1-4/+6
metze (This used to be commit fddcbf5d4cce77705be43956ea93895432b64aa1)
2007-10-10r19721: ldapsrv_SearchCallback isn't needed any moreStefan Metzmacher1-60/+1
ldb_search_default_callback does the same... metze (This used to be commit 0edac60ec6f1e67de8e08f4e71e56b674915ad6e)
2007-10-10r19720: - don't pass a pointer reference to ldb_search_default_callback()Stefan Metzmacher2-16/+18
as it's ugly when it free's the callers memory on failure! - only steal the controls on a LDB_REPLY_EXTENDED, LDB_REPLY_DONE and ignore them on LDB_REPLY_ENTRY, LDB_REPLY_REFERRAL as we currently have not way to return them in a ldb_result (we should fix this!) metze (This used to be commit 47da62b15abf48f97ce6fc8dc4627792728349ae)
2007-10-10r19719: don't use 'new' as var name samba3 doesn't like it...Stefan Metzmacher1-4/+4
metze (This used to be commit 7a4f46c1c9ec8119db46ffc57d77fcf13ca0c5a8)
2007-10-10r19714: - add an explicit default target (needs to be the first target in ↵Stefan Metzmacher1-1/+3
the Makefile) - let 'make nss' work alone metze (This used to be commit 5685b6c8a267251bb21f2cc0e768b00f615e0f1b)
2007-10-10r19708: add a script for running net tests separatelyRafal Szczesniak1-0/+2
rafal (This used to be commit 0f913ef240dd3117197df1272e88ac195cd8e399)
2007-10-10r19699: - use better names for the site stringsStefan Metzmacher5-19/+20
- use the client_site when creating the server object metze (This used to be commit b02d0e1be343c7d609715237dc842702b6fbe231)