summaryrefslogtreecommitdiffstats
path: root/source3/lib
Commit message (Collapse)AuthorAgeFilesLines
...
| * Don't copy the winbindd_request in wb_transVolker Lendecke2009-03-081-30/+2
| |
| * Convert wb_open_pipe to tevent_reqVolker Lendecke2009-03-081-51/+47
| |
| * Convert wb_connect to tevent_reqVolker Lendecke2009-03-081-38/+30
| |
| * Convert wb_int_trans to tevent_reqVolker Lendecke2009-03-081-69/+63
| |
| * Add parameter "queue" to wb_int_trans_sendVolker Lendecke2009-03-081-6/+7
| |
| * Move "struct req_read_state" where it belongsVolker Lendecke2009-03-081-5/+5
| |
| * Convert wb_resp_write to tevent_reqVolker Lendecke2009-03-081-13/+12
| |
| * Convert wb_resp_read to tevent_reqVolker Lendecke2009-03-082-25/+22
| |
| * Convert wb_req_read to tevent_reqVolker Lendecke2009-03-081-17/+16
| |
| * Convert wb_req_write to tevent_reqVolker Lendecke2009-03-082-27/+28
| |
| * Add tevent_req wbc helpersVolker Lendecke2009-03-081-0/+37
| |
| * Add "queue" to writev_sendVolker Lendecke2009-03-081-2/+2
| | | | | | | | | | Unless higher levels queue themselves somehow, writev will *always* be queued. So the queueing should be done at the right level.
| * s3:errormap: add ECANCELED, ERRDOS/ERRbadfid, NT_STATUS_CANCELLED mappingStefan Metzmacher2009-03-061-0/+3
| | | | | | | | | | | | If someone knows a better dos error, please tell me... metze
* | Revert accidental reintroduction of void ** bug.Jelmer Vernooij2009-03-081-1/+1
|/
* s3:dbwrap_ctdb_marshall_add: don't leak the ctdb_rec_data to the outsideMichael Adam2009-03-041-6/+6
| | | | Michael
* s3:smbconf: move smbconf_share_exists checks into backendMichael Adam2009-03-041-4/+9
| | | | Michael
* s3: Remove madvise supportSteven Danneman2009-03-041-7/+0
| | | | | | | | This reverts 193be432. The MADVISE_PROTECT is inherited by all child processes and cannot be unset. The intention of the original patch was to protect the parent process, but allow children to be killed in low memory. Since this isn't possible with the current API, reverting the whole feature.
* s3: Fix a memleak in dbwrap_rbt.Michael Adam2009-03-041-4/+4
| | | | | | | | | | | | | The SMB_MALLOC'ed rbt node data was not free'd on talloc free of the db context. This is a quick fix using talloc instead of malloc for allocation of the node data. Since malloc was originally used for performance reasons, one might want to reverse to malloc and create a talloc destructor that walks the tree and frees all the node data if this talloc approach proves to be too slow.. Michael
* Fix "ignore return" warning.Jeremy Allison2009-03-031-2/+3
| | | | Jeremy.
* Fix wbclient.c wrt tevent_req changes too.Simo Sorce2009-03-021-4/+3
|
* Attempt to fix the buildVolker Lendecke2009-03-021-2/+2
| | | | | | | | | Simo, with which compiler did you build this? I'd be curious to learn about the compiler settings that make this build. Thanks, Volker
* Make struct tevent_req opaqueSimo Sorce2009-03-022-30/+23
| | | | | | | | | | | | | | | | Move struct tevent_req in tevent_internal, and ad getters and setters for private data and the callback function. This patch also renames 'private_state' into 'data'. What is held in this pointer is in fact data and not a state like enum tevent_req_state. Calling it 'state' is confusing. The functions addedd are: tevent_req_set_callback() - sets req->async.fn and req->async.private_data tevent_req_set_print_fn() - sets req->private_print tevent_req_callback_data() - gets req->async.private_data tevent_req_data() - gets rea->data This way it is much simpler to keep API/ABI compatibility in the future.
* Use samba3's own iconv implementation for now, until all changes areJelmer Vernooij2009-03-021-2/+2
| | | | merged.
* s3: Fix incompatible type warningsTim Prouty2009-03-011-1/+1
|
* Merge branch 'master' of git://git.samba.org/samba into convenienceJelmer Vernooij2009-03-013-411/+16
|\
| * Move secacl to top-level.Jelmer Vernooij2009-03-011-118/+0
| |
| * Move secace.c to top-level.Jelmer Vernooij2009-03-012-293/+16
| |
* | Use common header file for character set handling in Samba 3 and Samba 4.Jelmer Vernooij2009-03-012-3/+3
|/
* Merge branch 'master' of ssh://git.samba.org/data/git/samba into talloc-nextJelmer Vernooij2009-03-011-4/+4
|\
| * Eliminate two duplicate SEC_ACE_TYPE constants already provided byJelmer Vernooij2009-03-011-4/+4
| | | | | | | | security.idl.
* | Move next_token_talloc() to top-level.Jelmer Vernooij2009-03-011-112/+0
|/
* Fix async reading winbindd_responseVolker Lendecke2009-02-281-1/+1
|
* Remove a temporary debug message -- sorryVolker Lendecke2009-02-261-1/+0
|
* Convert open_socket_out to tevent_reqVolker Lendecke2009-02-261-41/+41
|
* s3:libsmbconf: add transactions to the libsmbconf apiMichael Adam2009-02-261-0/+18
| | | | | | | | | This is useful for wrapping higher level aggregate operations in transactions. The text backend implementations just return WERR_OK, the registry backend implementatoins use the regdb_transaction_start|commit|cancel routines just added. Michael
* Add db_tdb_parseVolker Lendecke2009-02-261-0/+12
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* Add dbwrap->parse_recordVolker Lendecke2009-02-261-0/+26
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* Speed up "net conf list"Volker Lendecke2009-02-261-115/+41
| | | | | | For 1000 shares this speeds up net conf list from .6 to .25 seconds on my box Signed-off-by: Michael Adam <obnox@samba.org>
* Speed up "net conf list"Volker Lendecke2009-02-261-0/+3
| | | | | | | With 1000 shares in the registry, this changed the time of "net conf list" from 1.1 seconds to .6 seconds. Signed-off-by: Michael Adam <obnox@samba.org>
* s3: Report the correct path when dumping core on FreeBSDTim Prouty2009-02-251-1/+83
| | | | Utilize the kern.corefile sysctl value on FreeBSD
* s3: Refactor and cleanup the error paths in dump_core_setupTim Prouty2009-02-251-42/+49
|
* s3:events: map TEVENT_DEBUG_TRACE to debug level 10Stefan Metzmacher2009-02-251-1/+1
| | | | metze
* s3: Fix a bug that prevent core files from being createdTim Prouty2009-02-241-1/+0
| | | | | | | Removed an erroneous free() that was causing the corepath to be NULL during dump_core(). This prevented dump_core() from actually calling abort() to create a core file. The bug was introduced in December by: 07e0094365e8dc360a83eec2e7cf9b1d5d8d6d00
* Use read_packet for wb_resp_readVolker Lendecke2009-02-241-90/+29
|
* Use read_packet for wb_req_readVolker Lendecke2009-02-241-92/+36
|
* Remove read_pktVolker Lendecke2009-02-241-99/+0
|
* Use async writev for wb_resp_writeVolker Lendecke2009-02-241-53/+23
|
* Use async writev in wb_req_writeVolker Lendecke2009-02-241-52/+22
|
* Convert async_connect to tevent_reqVolker Lendecke2009-02-242-31/+60
|
* s3-lib: add marshall_sec_desc_buf and unmarshall_sec_desc_buf helpers.Günther Deschner2009-02-241-0/+63
| | | | Guenther