Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-01-04 | Add open_socket_out_defer_send/recv | Volker Lendecke | 1 | -0/+111 | |
2009-01-04 | Async wrapper for open_socket_out_send/recv | Volker Lendecke | 1 | -56/+168 | |
2009-01-04 | async libwbclient infrastructure | Volker Lendecke | 1 | -0/+774 | |
2009-01-04 | Remove wb_trans_send/recv | Volker Lendecke | 1 | -143/+0 | |
2009-01-04 | Move winbindd/winbindd_reqtrans.c to lib/wb_reqtrans.c | Volker Lendecke | 1 | -0/+685 | |
2009-01-04 | Convert async_connect to "normal" style | Volker Lendecke | 1 | -101/+113 | |
2009-01-04 | Actually do a non-blocking connect.... :-) | Volker Lendecke | 1 | -1/+1 | |
2009-01-04 | Add an async queueing mechanism | Volker Lendecke | 1 | -0/+78 | |
2009-01-04 | Add async timeout helpers | Volker Lendecke | 1 | -0/+42 | |
2009-01-03 | open_socket_out is always used with SOCK_STREAM, remove argument "type" | Volker Lendecke | 1 | -9/+3 | |
2009-01-03 | Fix retval of async_syscall_result_int | Volker Lendecke | 1 | -1/+1 | |
2009-01-03 | struct async_req doesn't really need to carry an event_context | Volker Lendecke | 2 | -9/+10 | |
2009-01-02 | Replace some SMB_ASSERTs with NT_STATUS_INTERNAL_ERROR | Volker Lendecke | 1 | -7/+28 | |
2009-01-02 | Optimize for the common case that packet.c received exactly one full packet | Volker Lendecke | 1 | -8/+14 | |
2009-01-02 | packet.h API: The callback is now responsible to talloc_free() "buf" | Volker Lendecke | 2 | -35/+46 | |
2009-01-01 | Fix bug 5913. | Volker Lendecke | 1 | -1/+1 | |
Never seen this to be a problem, but it doesn't hurt either :-) | |||||
2009-01-01 | Remove two pointless globals | Volker Lendecke | 2 | -13/+12 | |
2008-12-31 | Fix all warnings in source3 with gcc4.3. | Jeremy Allison | 1 | -4/+30 | |
Jeremy. | |||||
2008-12-31 | Disable the use of splice(2) | Volker Lendecke | 1 | -1/+1 | |
On a debian lenny installation with a kernel that calls itself 2.6.28, I could repeatably block smbd using splice. According to the output of netstat, the recvq of the TCP connection was full and at the same time according to strace smbd was stuck in a splice syscall trying to read from that TCP connection. We can not protect ourselves from this condition, as nobody will ever notify us that something is broken. So sadly we can't use splice yet at all. Maybe in 2.6.29... | |||||
2008-12-31 | Try to fix recvfile using splice on Linux | Volker Lendecke | 1 | -21/+36 | |
According to the splice(2) manpage, one of the file descriptors *must* be a pipe. With this patch I could successfully run splice(2) on a debian lenny installation. Jeremy, please check! | |||||
2008-12-31 | Rename parent_dirname_talloc() to parent_dirname() | Volker Lendecke | 1 | -2/+2 | |
2008-12-31 | Remove unused function parent_dirname | Volker Lendecke | 1 | -13/+0 | |
2008-12-31 | Make use of TALLOC_MEMDUP in parent_dirname_talloc() | Volker Lendecke | 1 | -2/+1 | |
2008-12-31 | Remove unused function get_numlist() | Volker Lendecke | 1 | -51/+0 | |
2008-12-30 | s3:cluster: register the client connection via CTDB_CONTROL_TCP_ADD | Stefan Metzmacher | 1 | -7/+19 | |
This means we correctly pass IPv6 addresses too. (CTDB_CONTROL_TCP_CLIENT was IPv4 only) metze | |||||
2008-12-29 | Add code to test write_data_iov a bit | Volker Lendecke | 1 | -0/+11 | |
2008-12-29 | Make write_data use write_data_iov | Volker Lendecke | 1 | -24/+24 | |
2008-12-29 | Add write_data_iov | Volker Lendecke | 1 | -0/+69 | |
2008-12-29 | Add sys_writev | Volker Lendecke | 1 | -0/+14 | |
2008-12-29 | s3:dbwrap: fix dbwrap_store_uint32() to match dbwrap_store_int32() | Stefan Metzmacher | 1 | -2/+2 | |
All callers expect 0 an success and -1 on error. metze | |||||
2008-12-28 | Make sure share_info.tdb is open before attempting to delete an entry | Steven Danneman | 1 | -2/+6 | |
2008-12-23 | Fix use of "time offset" parameter, and add test to make sure I don't break ↵ | Jelmer Vernooij | 1 | -2/+0 | |
it again :-) | |||||
2008-12-19 | Move some bytes from data to text, make use of the ARRAY_SIZE macro | Volker Lendecke | 1 | -2/+2 | |
Probably pointless, but it doesn't add complexity and it is fun to see bss and data shrink :-) | |||||
2008-12-15 | s3: Use DEBUGADD instead of DEBUG to avoid printing the header | Dan Sledz | 1 | -2/+3 | |
2008-12-14 | Remove the global "cmdline_auth_info" from source3/lib/util.c | Volker Lendecke | 2 | -83/+119 | |
This involves changing all our clients, that's why it's so large. | |||||
2008-12-14 | Move 128 bytes from the data to the text segment | Volker Lendecke | 1 | -1/+1 | |
2008-12-14 | Remove a pointless static variable | Volker Lendecke | 1 | -1/+1 | |
2008-12-09 | s3: Refactor getting sec_info from a security_descriptor into separate function | Tim Prouty | 1 | -0/+27 | |
2008-12-08 | Simplify async programming a bit with helper routines | Volker Lendecke | 2 | -10/+25 | |
Introduce async_req_is_error() and async_req_simple_recv() | |||||
2008-12-08 | Streamline the async_sock API a bit | Volker Lendecke | 1 | -33/+36 | |
2008-12-05 | Fix logging to syslog | Dan Sledz | 1 | -1/+1 | |
2008-12-05 | Fix bug #5928 - Option --version in testparm does not work. | Tomasz Krasuski | 1 | -1/+1 | |
2008-12-05 | s3-samr: fix SAMR_FIELD_PASSWORD callers. | Günther Deschner | 1 | -1/+1 | |
Guenther | |||||
2008-12-03 | s3: Change sockaddr util function names for consistency | Tim Prouty | 2 | -11/+11 | |
Also eliminates name conflicts with OneFS system libraries | |||||
2008-11-28 | Move cli_trans_oob to lib/util.c | Volker Lendecke | 1 | -0/+19 | |
Rename it to trans_oob, it will be used in the server routines. | |||||
2008-11-15 | Attempt to fix the build | Volker Lendecke | 1 | -1/+1 | |
I have no idea how this could have happened. Probably done a make and make test in a different tree than the one I have done the push from. Sorry. Volker | |||||
2008-11-14 | Make memcache_add_talloc NULL out the source pointer | Volker Lendecke | 2 | -3/+13 | |
This is an orthogonality measure to make clear this pointer now belongs to the cache. (cherry picked from commit e6080c6e87d6fe3995b121a772bf3f6343fa666f) | |||||
2008-11-14 | Actually finish memcache_add_talloc | Volker Lendecke | 1 | -1/+36 | |
This fixes a memleak found by Martin Zielinski <mz@seh.de>. Thanks for looking closely! Volker (cherry picked from commit a31a84a078100819809e6d40dbc3df207a50a0b2) | |||||
2008-11-14 | Rename some variables in getpwnam_alloc() for clarity | Volker Lendecke | 1 | -11/+12 | |
2008-11-14 | sys_pwnam doesn't return talloced memory, so don't mix up the returned struct. | Volker Lendecke | 1 | -4/+1 | |
(cherry picked from commit eb99923991960e53bd150ac8f1d818cb746101b4) |