summaryrefslogtreecommitdiffstats
path: root/source/lib
Commit message (Collapse)AuthorAgeFilesLines
...
| | * r14380: Reduce the size of structs.hJelmer Vernooij2006-03-141-0/+4
| | |
| | * r14374: remove sparse warningStefan Metzmacher2006-03-141-1/+1
| | | | | | | | | | | | metze
| | * r14364: operational -> async (untested)Simo Sorce2006-03-141-0/+251
| | |
| | * r14363: Remove credentials.h from the global includes.Jelmer Vernooij2006-03-142-0/+2
| | |
| | * r14349: Kill proto.h!Jelmer Vernooij2006-03-137-6/+11
| | | | | | | | | | | | | | | | | | Prototypes are now spread over multiple headers, usually one per subsystem. This change is required to allow proper header dependencies later on, without recompiling Samba each time the mtime of any source file changes.
| | * r14344: More helpful messages on error for command line specified controlsSimo Sorce2006-03-133-58/+438
| | | | | | | | | | | | | | | fixes in paged_results asq -> async
| | * r14332: Built in different paths when running locally (from ./bin/) in ↵Jelmer Vernooij2006-03-131-0/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | developer mode (./configure.developer). This will change the hardcoded value of a few paths (BINDIR, SWATDIR, EJSDIR, SETUPDIR, DATADIR, MODULESDIR). The regular locations will be used when running 'make install'. This enables developers to work on (shared built) modules, swat, ejs and setup files without having to run 'make install' each time.
| | * r14327: Replace MAJOR_VERSION/MINOR_VERSION/RELEASE_VERSION with two ↵Jelmer Vernooij2006-03-138-24/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | parameters: - VERSION: should contain the current version. Will be made part of the filename. - SO_VERSION: should contain the latest version that this on is compatible to. Will be used for setting the soname of the shared library. Fix sonames and use them on platforms that support them Remove symlinking code. ldconfig will take care of creating the symlinks now that we set the soname.
| | * r14309: make sure ret is initialisedAndrew Tridgell2006-03-131-2/+2
| | |
| | * r14308: fixed an out of range shift and an uninitialised errorAndrew Tridgell2006-03-131-1/+3
| | |
| | * r14307: fixed dereference of my_address->addr when NULLAndrew Tridgell2006-03-131-2/+3
| | |
| | * r14296: added an abort() to SMB_ASSERT() so that static analysers know it ↵Andrew Tridgell2006-03-131-1/+1
| | | | | | | | | | | | doesn't return
| | * r14295: make sure we return a valid data blobAndrew Tridgell2006-03-131-1/+1
| | |
| | * r14288: - make the snprintf call in talloc portable to older solaris boxesAndrew Tridgell2006-03-131-2/+8
| | | | | | | | | | | | - fixed an error found sing the beam analyser
| | * r14281: Pull apart LIBDIR and MODULESDIRJelmer Vernooij2006-03-132-5/+5
| | | | | | | | | | | | Move architecture-independent data to DATADIR (was LIBDIR)
| | * r14240: fix summary output (step 2)Stefan Metzmacher2006-03-122-5/+19
| | | | | | | | | | | | | | | | | | | | | we now need to explicit enable external libraries in *.m4 files again... metze
| | * r14227: We are passing the wrong pointer hereSimo Sorce2006-03-121-1/+1
| | |
| | * r14199: This isn't pretty, but it makes the network interface detection work ↵Andrew Bartlett2006-03-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | again. When making build changes, watch out that 'compiles' doesn't mean that it works... Andrew Bartlett
| | * r14163: Remove LDB_WAIT_ONCE, we can hardly guarante weSimo Sorce2006-03-103-18/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | get anything if not waiting for all, keeping this value may just lead to false expectations. You either make blocking call waiting for ALL results transforming this in a sync call, or either you loop expecting from 0 to all results being returned at any time on any of these loops. It should be clear also that when you may receive results at any time as soon as you call ldb_request. Your callback may have received all results even before calling ldb_async_wait the first time. Simo.
| | * r14162: Minor fixes on sortSimo Sorce2006-03-102-55/+485
| | | | | | | | | | | | Initial work on async paged_results
| | * r14161: return early if we know the job is already finishedSimo Sorce2006-03-104-10/+29
| | |
| | * r14131: Fix Coverity bug # 127Volker Lendecke2006-03-101-1/+3
| | |
| | * r14109: Modulify the smbcalls subsystem.Jelmer Vernooij2006-03-092-37/+37
| | |
| | * r14108: Make the Doxyfiles a bit shorter...Jelmer Vernooij2006-03-093-3629/+16
| | |
| | * r14094: Use saner module directory names, fix loading of server service modules.Jelmer Vernooij2006-03-091-0/+1
| | |
| | * r14067: give more usefull errorsStefan Metzmacher2006-03-091-4/+5
| | | | | | | | | | | | metze
| | * r14038: reopen log files after a SIGHUPStefan Metzmacher2006-03-081-14/+32
| | | | | | | | | | | | metze
| | * r14029: Fix resource leak in error codepath. Coverity CID #64.Jeremy Allison2006-03-081-2/+6
| | | | | | | | | | | | Jeremy.
| | * r13998: From now on ldb_request() will require an alloced requestSimo Sorce2006-03-084-103/+141
| | | | | | | | | | | | | | | | | | | | | | | | By freeing the request you will be sure everything down the path get freed. this also means you have to steal the results if you want to keep them :) simo.
| | * r13996: simplify ldb_async_wait() some moreSimo Sorce2006-03-078-23/+23
| | |
| | * r13993: First prototype of how an async module should be built.Simo Sorce2006-03-071-42/+361
| | | | | | | | | | | | | | | This is NOT tested yet, just compiles. Committing to share the code and gather comments
| | * r13992: change the way ldb_async_wait() works.Simo Sorce2006-03-078-17/+16
| | | | | | | | | | | | | | | I think I should change the name of this function to ldb_async_process(), any opinions ?
| | * r13990: Fix issues with function renaming.Jelmer Vernooij2006-03-073-4/+4
| | |
| | * r13986: minor fixesSimo Sorce2006-03-071-8/+20
| | |
| | * r13973: fix the buildStefan Metzmacher2006-03-071-3/+3
| | | | | | | | | | | | metze
| | * r13972: fix the build, jelmer can you please take a look at what's going ↵Stefan Metzmacher2006-03-071-1/+1
| | | | | | | | | | | | | | | | | | wrong here metze
| | * r13969: Make these names lowercase as well (just like they are now in the ↵Jelmer Vernooij2006-03-072-2/+2
| | | | | | | | | | | | buildsystem)
| | * r13962: make functions publicStefan Metzmacher2006-03-071-19/+19
| | | | | | | | | | | | metze
| | * r13960: Generate makefile rules for installing/removing shared modules.Jelmer Vernooij2006-03-076-36/+36
| | |
| | * r13959: make more functions publicStefan Metzmacher2006-03-072-6/+6
| | | | | | | | | | | | metze
| | * r13956: make more functions publicStefan Metzmacher2006-03-071-39/+39
| | | | | | | | | | | | metze
| | * r13953: make more functions publicStefan Metzmacher2006-03-071-4/+4
| | | | | | | | | | | | metze
| | * r13944: Yet another round of splitups.Jelmer Vernooij2006-03-0710-2/+14
| | |
| | * r13938: Around round of splitupsJelmer Vernooij2006-03-073-1/+3
| | |
| | * r13934: these are only needed for a standalone buildStefan Metzmacher2006-03-071-0/+2
| | | | | | | | | | | | metze
| | * r13926: More header splitups.Jelmer Vernooij2006-03-072-1/+2
| | |
| | * r13924: Split more prototypes out of include/proto.h + initial work on header Jelmer Vernooij2006-03-0711-25/+36
| | | | | | | | | | | | file dependencies
| | * r13920: "hidden" visibility is the default...Stefan Metzmacher2006-03-071-1/+0
| | | | | | | | | | | | metze
| | * r13903: Don't generate prototypes for modules and binaries in ↵Jelmer Vernooij2006-03-062-1/+4
| | | | | | | | | | | | | | | | | | include/proto.h by default.
| | * r13902: Stricter checking for the -fvisibility flagJelmer Vernooij2006-03-063-2/+6
| | | | | | | | | | | | Add two more proto headers.