summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-12-21Implement some of the stubs in misc python module.Jelmer Vernooij2-12/+48
2008-12-21Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij1-5/+2
2008-12-21Support custom constructors for pidl-created types and support types based ↵Jelmer Vernooij1-5/+2
on pidl-created types.
2008-12-20Use plain C implementation for misc Python module rather than SWIG.Jelmer Vernooij9-4238/+293
2008-12-20Support subtypes of ldb.Ldb.Jelmer Vernooij2-13/+68
2008-12-20Fix all pyldb tests except for modules.Jelmer Vernooij2-315/+368
2008-12-20Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij26-3599/+3793
2008-12-20Fix tevent python module build as part of samba 4.Jelmer Vernooij3-9/+13
2008-12-20Merge branch 'master' of ssh://git.samba.org/data/git/samba into ↵Jelmer Vernooij9-62/+363
tevent-standalone
2008-12-20Stop using SWIG for ldb Python bindings.Jelmer Vernooij10-3510/+121
2008-12-20Fix standalone compilation of events library.Jelmer Vernooij5-25/+24
2008-12-20Add missing files for standalone build.Jelmer Vernooij3-0/+3279
2008-12-20Corrections to Microsoft's schema and the OpenLDAP mapping fileAndrew Bartlett2-0/+63
2008-12-20Treat DN+STring as a binary string for nowAndrew Bartlett1-4/+4
This matches the way we work with DN+Binary. We need this for the OpenLDAP backend. Andrew Bartlett
2008-12-20Don't trust sscanf not to run off the end of the stringAndrew Bartlett1-14/+35
The memory allocations here are wasteful, but they do nicely ensure we cannot walk off the end of the DATA_BLOB that might be a string, or might be binary and might not be NULL terminated. Andrew Bartlett
2008-12-20Now store the GUID and SID from a DN over DRSUAPI into ldb.Andrew Bartlett4-43/+162
Until the extended DN work was compleated, there was no way to store the additional metadata. Andrew Bartlett
2008-12-20Fix compiler warning when parsing a SID in a data blobAndrew Bartlett1-1/+1
2008-12-19Add torture test for bug #5986 - streams rename, so we don't regress.Jeremy Allison1-0/+98
Jeremy.
2008-12-19Merge branch 'pyregistry' of git://git.samba.org/jelmer/sambaJelmer Vernooij13-9359/+2035
Conflicts: source4/lib/ldb/ldb_wrap.c
2008-12-19Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij9-62/+630
2008-12-19Extend the chain1 test with write&xVolker Lendecke1-2/+21
2008-12-19Reprocess LDB SWIG file.Jelmer Vernooij1-0/+2
2008-12-19Add a torture test simulating Windows write behaviourVolker Lendecke1-1/+81
Jeremy, enjoy :-)
2008-12-19Make smbclient "put" use cli_pushVolker Lendecke1-37/+31
This should fill the TCP socket even beyond the smbclient io_bufsize, very much like smbclient "get" should do it since 3.2
2008-12-19Depend on specific version of LDB, as the API seems to unstableJelmer Vernooij1-1/+1
to predict that newer versions (even minor versions) are going to be be backwards compatible :-(
2008-12-19Add async cli_write_andx and cli_pullVolker Lendecke2-0/+425
2008-12-19Fix bug #5986 - Editing a stream is broken (rename problems).Jeremy Allison2-11/+14
Jeremy.
2008-12-19Specify explicit path to tevent.h, compilation breaks without it for me.Jelmer Vernooij1-1/+1
2008-12-19Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij328-13073/+35514
2008-12-19Avoid use of parentheses in Python import statements, as it's not supported ↵Jelmer Vernooij4-10/+8
by Python2.3.
2008-12-19Fix setting smb_len for huge write&x callsVolker Lendecke1-1/+14
2008-12-19Add the cli_wct_ofs routine to calculate the offset for write&xVolker Lendecke2-0/+33
2008-12-19Remove the direct inbuf reference from construct_reply_common()Volker Lendecke2-10/+11
2008-12-19Add a doxygen comment line I forgot to mergeVolker Lendecke1-0/+1
2008-12-19Convert cli_request->outbuf to uint8_tVolker Lendecke2-15/+17
2008-12-19Fix more tests.Jelmer Vernooij4-104/+297
2008-12-19For large smbwrite&x, we need more than 64k bccVolker Lendecke2-6/+6
2008-12-19Add some commentsVolker Lendecke1-0/+22
If it takes more than 10 seconds to understand the code you've written yourself less than a year ago, it's time for comments or refactoring. I couldn't find a way to refactor that cleanly, so add comments :-)
2008-12-19s4:cosmetic: Remove trailing tabs and spacesSimo Sorce1-59/+59
2008-12-19Small cosmetic LDB patch regarding return values.Matthias Dieter Wallnöfer3-7/+7
It changes some "return 0" in "return LDB_SUCCESS"
2008-12-19Fix the padding calculation in smb_splice_chain for "bytes_padding!=0"Volker Lendecke1-1/+1
2008-12-19Pass "bytes_alignment" up through cli_request_sendVolker Lendecke7-10/+14
This parameter makes smb_spice_chain add padding before the bytes field
2008-12-19Port over more functionality to new SWIGless Python module.Jelmer Vernooij1-290/+337
2008-12-19correct the description of the "ldap timeout" parameterBjörn Jacke1-3/+1
2008-12-19Fix a "ignoring function call result" warningVolker Lendecke1-1/+6
2008-12-19Prefer network writes over readsVolker Lendecke1-32/+33
If we really want to keep the pipe busy, we need to write everything we have as early as possible, giving the kernel the chance to get rid of the buffers quickly :-)
2008-12-19Move some bytes from data to text, make use of the ARRAY_SIZE macroVolker Lendecke1-2/+2
Probably pointless, but it doesn't add complexity and it is fun to see bss and data shrink :-)
2008-12-19Factor out cli_write_max_bufsizeVolker Lendecke1-25/+36
2008-12-19Remove two write-only variablesVolker Lendecke1-8/+0
If someone wants those stats, please don't use globals :-)
2008-12-19Merge branch 'master' of ssh://git.samba.org/data/git/samba into pyregistryJelmer Vernooij24-135/+222