Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added John Reilly's enumports/addprinter/delprinter scripting code plus the | Jeremy Allison | 2000-07-31 | 1 | -0/+14 |
| | | | | | | | | | | fix for the Win9x printer drivers. Changed command names to add "command" string on the end for some consistancy with the other scripting commands. Added '%P' option to tdbpack/unpack to store long comment string. Made port name be "Samba Printer Port" if no enum port script given. Fixed prs_uint32_pre code to cope with null args. Jeremy. | ||||
* | support both read and write locks inside the tdb | Andrew Tridgell | 2000-06-15 | 1 | -1/+6 |
| | |||||
* | - use read locks when possible | Andrew Tridgell | 2000-06-15 | 1 | -42/+44 |
| | | | | - don't use as many locks on a store | ||||
* | use the right MMAP flag | Andrew Tridgell | 2000-06-15 | 1 | -1/+1 |
| | |||||
* | Moved tdb functions that access parse structs into parse_prs.c | Jeremy Allison | 2000-06-08 | 1 | -30/+0 |
| | | | | | to prevent builkd breaking. Jeremy. | ||||
* | Fixing get/set of security descriptors. | Jeremy Allison | 2000-06-07 | 1 | -8/+4 |
| | | | | | | Removed ugly hack for NT printing. Fixed up tdb parse stuff memory leaks. Jeremy. | ||||
* | added some debug code to track down pack/unpack problems | Andrew Tridgell | 2000-06-04 | 1 | -0/+12 |
| | |||||
* | getting and setting security descriptors on printers now works | Andrew Tridgell | 2000-05-27 | 1 | -10/+42 |
| | | | | this needed some fixes in tdb_unpack(). Tim, you'll need to update | ||||
* | added tdb_pack() and tdb_unpack() | Andrew Tridgell | 2000-05-24 | 1 | -0/+148 |
| | |||||
* | While we're all making incompatible tdb changes, I changed the implementation | Tim Potter | 2000-05-12 | 1 | -4/+4 |
| | | | | | | | | | of tdb_{store,get}_int() to store the length of the string key + 1 so the stored key contains the trailing NULL character. This allows normal string library routines to manipulate keys. Also renamed tdb_get_int() to tdb_fetch_int() to keep the set of verbs consistent. | ||||
* | use gcc not insure by default in tdb build | Andrew Tridgell | 2000-05-12 | 1 | -1/+1 |
| | |||||
* | an imcompatible tdb format change (sorry!) | Andrew Tridgell | 2000-05-12 | 2 | -11/+3 |
| | | | | | this will give us a much nicer migration path for the proposed semaphore code | ||||
* | when creating the database zero the reserved space | Andrew Tridgell | 2000-05-10 | 1 | -0/+8 |
| | |||||
* | - add some reserved space to every tdb, this will be | Andrew Tridgell | 2000-05-10 | 1 | -2/+3 |
| | | | | | used for semaphores and future expansion - update tdb version number to 2 | ||||
* | Use a prime for default tdb hash size - this makes a difference ! | Herb Lewis | 2000-05-10 | 1 | -1/+1 |
| | | | | Jeremy. | ||||
* | Added tdb_store_by_string() and tdb_fetch_by_string() functions to store | Tim Potter | 2000-05-09 | 1 | -0/+27 |
| | | | | data with null terminated string keys. | ||||
* | fixed typo | Andrew Tridgell | 2000-05-01 | 1 | -1/+1 |
| | |||||
* | added TDB_INTERNAL, TDB_NOLOCK and TDB_NOMMAP flags. | Andrew Tridgell | 2000-05-01 | 5 | -45/+76 |
| | | | | TDB_INTERNAL replaces the old method of passing a null filename | ||||
* | - removed all our old wildcard matching code and replaced it with a | Andrew Tridgell | 2000-04-30 | 1 | -20/+15 |
| | | | | | | | | | | | | | | | | call to ms_fnmatch(). This also removes all the Win9X semantics stuff and a bunch of other associated cruft. - moved the stat cache code into statcache.c - fixed the uint16 alignment requirements of ascii_to_unistr() and unistr_to_ascii() - trans2 SMB_FIND_FILE_BOTH_DIRECTORY_INFO returns the short name as unicode always (at least thats what NT4 does) - fixed some errors in the in-memory tdb code. Still ugly, but doesn't crash as much | ||||
* | put tdb utility functions in a separate file | Andrew Tridgell | 2000-04-29 | 2 | -44/+67 |
| | |||||
* | Added tdb_get/set_int_byblob, which takes a size_t len and then implemented | Jeremy Allison | 2000-04-28 | 1 | -7/+19 |
| | | | | | | the tdb_get/set_int string functions in terms of them. Will be useful in storing POSIX pending close records (which are ints but indexed by dev/inode pairs). Jeremy. | ||||
* | added TDB_MODIFY flag - patch from from luke | Andrew Tridgell | 2000-04-25 | 3 | -5/+30 |
| | |||||
* | dump in a binary format | Andrew Tridgell | 2000-04-24 | 1 | -3/+45 |
| | |||||
* | use an size_t not a ssize_t when checking for out of bounds errors | Andrew Tridgell | 2000-04-24 | 1 | -1/+1 |
| | |||||
* | locking/locking.c: Fixed placeholder code for POSIX locking. | Jeremy Allison | 2000-04-18 | 1 | -0/+2 |
| | | | | | | | | printing/printing.c: Cast tdb_delete to (tdb_traverse_func) to stop warning. tmpfile gives mirror warning. smbd/groupname.c: Remember to file_lines_free() on exit. tdb/tdb.h: Add tdb_traverse_func typedef. Jeremy | ||||
* | added tdb_get_int() and tdb_store_int() | Andrew Tridgell | 2000-04-16 | 1 | -0/+34 |
| | | | | they are very useful for database versioning | ||||
* | Added standard shell command thing using '!' as first character. | Tim Potter | 2000-03-13 | 1 | -41/+49 |
| | |||||
* | Check for null tdb context in tdb_exists() | Tim Potter | 2000-03-01 | 1 | -0/+7 |
| | |||||
* | Makefile for tdb directory. | Tim Potter | 2000-02-28 | 1 | -0/+21 |
| | |||||
* | Oops - put back filename argument to tdb_open(). | Tim Potter | 2000-02-28 | 1 | -1/+1 |
| | |||||
* | Modifications to tdb_traverse() arguments to remove compile warnings. | Tim Potter | 2000-02-28 | 2 | -3/+10 |
| | |||||
* | Allow tdb databases to be created "in memory" without having a file | Tim Potter | 2000-02-28 | 1 | -55/+99 |
| | | | | | associated with them. tdb can then be used as a hash table data structure. | ||||
* | Added tdbtool to .cvsignore list. | Tim Potter | 2000-02-28 | 1 | -0/+1 |
| | |||||
* | Updated docs for tdb_traverse. | Tim Potter | 2000-02-17 | 1 | -2/+3 |
| | |||||
* | More checks for passing NULL tdb contexts to tdb functions. | Tim Potter | 2000-02-16 | 1 | -0/+77 |
| | |||||
* | tdb_traverse() now takes three arguments. | Tim Potter | 2000-02-16 | 1 | -3/+3 |
| | |||||
* | Return "Invalid tdb context" instead of crashing when tdb_error called | Tim Potter | 2000-02-15 | 1 | -2/+6 |
| | | | | with NULL tdb context. | ||||
* | 1) added void* state argument to tdb_traverse. guess what! there were | Luke Leighton | 2000-02-04 | 4 | -12/+13 |
| | | | | | | | | | | | | | | | | | | two places i found where it was appropriate to _use_ that third argument, in locking.c and brlock.c! there was a static traverse_function and i removed the static variable, typecast it to a void*, passed it to tdb_traverse and re-cast it back to the traverse_function inside the tdb_traverse function. this makes the use of tdb_traverse() reentrant, which is never going to happen, i know, i just don't like to see statics lying about when there's no need for them. as i had to do in samba-tng, all uses of tdb_traverse modified to take the new void* state argument. 2) disabled rpcclient: referring people to use SAMBA_TNG rpcclient. i don't know how the other samba team members would react if i deleted rpcclient from cvs main. damn, that code's so old, it's unreal. 20 rpcclient commands, instead of about 70 in SAMBA_TNG. | ||||
* | tdb record read error return check fix from Dave Airlie <airlied@samba.org>. | Jeremy Allison | 2000-01-24 | 1 | -1/+1 |
| | | | | Jeremy. | ||||
* | casts and defines to make solaris happy | Andrew Tridgell | 2000-01-14 | 1 | -0/+4 |
| | |||||
* | improved the error checking | Andrew Tridgell | 2000-01-08 | 3 | -27/+86 |
| | |||||
* | don't use strcpy | Andrew Tridgell | 2000-01-07 | 1 | -1/+2 |
| | |||||
* | don't require readline | Andrew Tridgell | 2000-01-07 | 1 | -1/+13 |
| | |||||
* | - patch from Rusty to neaten up the code a bit | Andrew Tridgell | 2000-01-07 | 2 | -232/+109 |
| | | | | - fixed a race condition in tdb_open() | ||||
* | lower the default hash size a bit | Andrew Tridgell | 2000-01-05 | 1 | -1/+1 |
| | |||||
* | ignore a few files | Andrew Tridgell | 2000-01-03 | 1 | -0/+5 |
| | |||||
* | drop the alignment to 4 bytes - this makes tdb more space efficient | Andrew Tridgell | 2000-01-03 | 1 | -1/+1 |
| | | | | and doesn't seem to affect performance | ||||
* | updated docs | Andrew Tridgell | 2000-01-02 | 2 | -3/+7 |
| | |||||
* | - added tdb_flags option to tdb_open() | Andrew Tridgell | 2000-01-02 | 5 | -21/+54 |
| | | | | | | | | | - added TDB_CLEAR_IF_FIRST flag to clear the database if this is the first attached process. Useful for non-persistent databases like our locking area (this will also make upgrades to new database layouts easier) - use lock_path() in a couple of places - leave connections database open while smbd running - cleaned up some tdb code a little, using macros for constants | ||||
* | show test result in ops/sec | Andrew Tridgell | 2000-01-02 | 1 | -2/+2 |
| |