summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-01-03s4:smbd: convert to tevent_* apiStefan Metzmacher5-24/+34
metze
2009-01-03s4:libcli/ldap: convert to tevent_* apiStefan Metzmacher2-14/+14
metze
2009-01-03s4:auth/kerberos: convert to tevent_* apiStefan Metzmacher2-14/+13
metze
2009-01-03tevent: raise version to 0.9.2 after AUTOCLOSE changesStefan Metzmacher3-3/+3
metze
2009-01-03tevent: remove TEVENT_FD_AUTOCLOSE featureStefan Metzmacher5-14/+0
TEVENT_FD_AUTOCLOSE adds a dependency to SOCKET_WRAPPER, which is bad. Callers should use tevent_fd_set_close_fn() now. metze
2009-01-03tevent: remove dependency to SOCKET_WRAPPER via "system/network.h"Stefan Metzmacher4-4/+0
metze
2009-01-03s4:socket: use a socket_wrapper aware function to auto close the fd event ↵Stefan Metzmacher5-17/+39
for sockets metze
2009-01-03s4:sysdep/inotify: use tevent_fd_set_auto_close()Stefan Metzmacher1-3/+17
metze
2009-01-03tevent: add tevent_fd_set_auto_close()Stefan Metzmacher3-1/+17
tevent_fd_set_auto_close() is a simple wrapper arround tevent_fd_set_close_fn() with a callback that uses plain close(2). metze
2009-01-03tevent: add tevent_fd_set_close_fn()Stefan Metzmacher8-5/+48
Let callers specify a close function as an alternative to TEVENT_FD_AUTOCLOSE. metze
2009-01-03tevent: move some common tevent_fd related functions into tevent_fd.cStefan Metzmacher8-59/+47
metze
2009-01-03tevent: specify argument names for the event handlersStefan Metzmacher1-12/+18
metze
2009-01-03tevent: fix standalone make testStefan Metzmacher1-5/+6
metze
2009-01-03open_socket_out is always used with SOCK_STREAM, remove argument "type"Volker Lendecke7-22/+13
2009-01-03Fix retval of async_syscall_result_intVolker Lendecke2-2/+2
2009-01-03struct async_req doesn't really need to carry an event_contextVolker Lendecke6-29/+24
2009-01-03Remove unused argument "vuid" from make_internal_rpc_pipe_pVolker Lendecke1-4/+2
2009-01-03tevent: raise version to 0.9.1Stefan Metzmacher3-5/+3
This 0.9.1 isn't compatible with 0.9.0, but it makes only sense to raise the major version after we have reached 1.0.0. metze
2009-01-02s4 winbind: Correctly silence a "discard const" warningKai Blin1-2/+2
Thanks to metze for pointing out the error.
2009-01-02Replace some SMB_ASSERTs with NT_STATUS_INTERNAL_ERRORVolker Lendecke1-7/+28
2009-01-02Optimize for the common case that packet.c received exactly one full packetVolker Lendecke1-8/+14
2009-01-02packet.h API: The callback is now responsible to talloc_free() "buf"Volker Lendecke3-37/+50
2009-01-02Merge branch 'master' of ssh://jra@git.samba.org/data/git/sambaJeremy Allison3-8/+11
2009-01-02Remove cli_cm_set_dest_ss() - removes the global dest_ssJeremy Allison2-20/+13
from libsmb/clidfs.c. Keep the '-I<address>' option in smbclient working. The intent is to remove all globals from libsmb/clidfs.c. Jeremy.
2009-01-02Changed code to use proper talloc context instead of NULL to control memory ↵scudette@gmail.com2-2/+2
leak.
2009-01-02Memory leak fixed due to accumulation of open reg keys.scudette@gmail.com1-5/+8
2009-01-02Fixes uninitialised access as reported by valgrind.scudette@gmail.com1-1/+1
2009-01-02Merge branch 'master' of ssh://jra@git.samba.org/data/git/sambaJeremy Allison35-425/+538
2009-01-02Fix warnings in make test code.Jeremy Allison5-12/+44
Jeremy.
2009-01-02s4:lib/events: remove unused events_internal.hStefan Metzmacher3-9/+1
external users need to use tevent_internal.h anyway metze
2009-01-02s4:selftest: report tevent tests as 'tevent.python'Stefan Metzmacher1-1/+1
metze
2009-01-02s4:lib/events: convert to use tevent_* functions instead of compat macrosStefan Metzmacher1-12/+11
metze
2009-01-02tevent: only provide compat macros if the caller wants themStefan Metzmacher1-5/+0
metze
2009-01-02tevent: change pytevent to tevent_*Stefan Metzmacher2-23/+24
metze
2009-01-02tevent: use TEVENT_FD_* instead of EVENT_FD_*Stefan Metzmacher4-43/+43
metze
2009-01-02tevent: rename ev_debug_ops => tevent_debug_opsStefan Metzmacher7-42/+69
And related changes, but we keep compat macros metze
2009-01-02tevent: rename events => tevent in tevent.pcStefan Metzmacher1-1/+1
metze
2009-01-02tevent: pass down handler_name and location to the backend layerStefan Metzmacher8-102/+154
metze
2009-01-02tevent: make tevent_add_*() macros arround _tevent_add_*()Stefan Metzmacher2-42/+77
This passes some additional debug information into the events system to make it easier to find bugs. metze
2009-01-02tevent: use HAVE_EPOLL instead of HAVE_EVENTS_EPOLLStefan Metzmacher4-8/+6
metze
2009-01-02tevent: rename event_register_backend() => tevent_register_backend()Stefan Metzmacher6-23/+22
And fix the callers and there init functions. metze
2009-01-02tevent: rename event_context_init* => tevent_context_init*()Stefan Metzmacher1-25/+26
metze
2009-01-02tevent: rename event_[s|g]et_fd_flags => tevent_fd_[s|g]et_flagsStefan Metzmacher1-2/+2
metze
2009-01-02tevent: rename event_loop_* => tevent_loop_*Stefan Metzmacher1-4/+4
metze
2009-01-02tevent: rename event_set_default_backend() => tevent_set_default_backend()Stefan Metzmacher1-5/+6
metze
2009-01-02tevent: use libreplace headers instead of system headersStefan Metzmacher4-9/+6
metze
2009-01-02s4:lib/events: deprecate event_context_find()Stefan Metzmacher1-1/+1
metze
2009-01-02s4:tevent: move event_context_find() to tevent_s4.cStefan Metzmacher2-18/+17
metze
2009-01-02s4:pyregistry: use tevent_context_init()Stefan Metzmacher1-1/+1
metze
2009-01-02Revert "s4 winbind: Copy SID to avoid "discard const" warning"Stefan Metzmacher1-2/+1
This reverts commit 102028ec722d942d7f91eb92e8da4f1480d140d1. state->ctx is the composite_context, which is a temporary context! metze