Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-05-03 | s4-waf: fixed target group for SOCKET_WRAPPER | Andrew Tridgell | 1 | -0/+1 | |
2010-04-18 | s4-waf: put the --xxx-wrapper options in 'developer options' group | Andrew Tridgell | 1 | -1/+2 | |
2010-04-08 | Revert "socket-wrapper: not all systems have FIONREAD defined" | Stefan Metzmacher | 1 | -2/+0 | |
This reverts commit 710aa773d54509de34404f9992c5058ddfa45f3b. We rely on FIONREAD in a lot of other parts in the code, so there's no need to have an ifdef for it in the socket_wrapper code. On tru64 FIONREAD is defined in <sys/ioctl.h> and we include <sys/ioctl.h> via "system/network.h". Tridge: maybe a HAVE_SYS_IOCTL_H was missing at the time you tried it on tru64? If we find a platform that doesn't support it, we need to bail out at configure time or provide a replacement in libreplace. metze | |||||
2010-04-08 | build: allow the waf build to work with python 3.0 and 3.1 | Thomas Nagy | 1 | -4/+2 | |
Python 3.x is a bit fussier about print statements and indentation. Signed-off-by: Andrew Tridgell <tridge@samba.org> | |||||
2010-04-06 | s4-waf: added a --enable-selftest option as a shortcut | Andrew Tridgell | 1 | -1/+3 | |
This is equiavalent to --enable-uid-wrapper --enable-nss-wrapper --enable-socket-wrapper but is easier to remember! | |||||
2010-04-06 | s4-waf: fixed some deps now we don't auto-include tevent and replace | Andrew Tridgell | 1 | -2/+2 | |
this is preparation for being able to use system versions of these libraries | |||||
2010-04-06 | s4-waf: mark the wscript files as python so vim/emacs knows how to highlight ↵ | Andrew Tridgell | 2 | -0/+4 | |
them | |||||
2010-04-06 | build: commit all the waf build files in the tree | Andrew Tridgell | 1 | -0/+4 | |
2010-04-06 | build: nearly there on samba4 build | Andrew Tridgell | 1 | -0/+1 | |
2010-04-06 | build: added wrapper options | Andrew Tridgell | 1 | -0/+11 | |
2010-04-03 | socket-wrapper: not all systems have FIONREAD defined | Andrew Tridgell | 1 | -0/+2 | |
tru64 for example | |||||
2010-02-17 | socket_wrapper: also ignore AF_INET6 in swrap_setsockopt() | Stefan Metzmacher | 1 | -0/+4 | |
metze | |||||
2009-09-08 | socket_wrapper: swrap_read() should use SWRAP_RECV* for swrap_dump_packet() | Stefan Metzmacher | 1 | -5/+3 | |
This is the same as swrap_recv(). metze | |||||
2009-09-07 | Add read() to socketwrapper. Metze please check. | Jeremy Allison | 2 | -1/+38 | |
Jeremy. | |||||
2009-06-19 | Partially revert restriction of socket_wrapper to 1500 byte writes | Andrew Bartlett | 1 | -10/+32 | |
This keeps the restriction for stream sockets (where the caller will retry), without creating problems on datagram sockets (CLDAP is not defined, as far as I know, across multiple UDP packets). The commit adding this restriction was 47b106c0ae8b91c9cccfc21bf8e4e416b1abfd5d Andrew Bartlett | |||||
2009-06-09 | fixed socket wrapper to determine family from the right structure | Andrew Tridgell | 1 | -1/+1 | |
In convert_in_un_remote() the socket family can be accessed either as si->family or inaddr->sa_family. We were using the si->family to determine how to cast the inaddr structure, but if si->family != inaddr->sa_family then we will incorrectly be casting a in6 structure as in4 or vice-versa. | |||||
2009-06-04 | socket_wrapper Cope with SOCK_CLOEXEC and SOCK_NONBLOCK flags | Andrew Bartlett | 1 | -4/+16 | |
Heimdal will, on supporting systems, set these flags in the type argument of socket(), causing breakage when combined with socket_wrapper. For background on these flags, see http://lwn.net/Articles/281965/ Andrew Bartlett | |||||
2009-05-26 | Add support for sendmsg() in socket_wrapper | Andrew Bartlett | 2 | -0/+77 | |
This is required because the deferred connect code skips the connect() until sending the packet, but unless we catch this call, the connect() never happens. Andrew Bartlett | |||||
2009-04-14 | socket_wrapper: fix the build on systems without ipv6 support | Stefan Metzmacher | 1 | -0/+2 | |
metze | |||||
2009-04-10 | socket_wrapper: fix crash bug in swrap_readv/writev | Stefan Metzmacher | 1 | -4/+10 | |
metze | |||||
2009-03-23 | socket_wrapper: fix connect() for dgram sockets, if the destination isn't ↵ | Stefan Metzmacher | 1 | -4/+52 | |
there yet Now we defer the real_connect() for dgram sockets to the first send()/sendto() call, as the destination might not be there at connect time. Commit 66dc53ee017d74a6f610bbe04337f064901fe2a1 was an incomplete fix for this problem. metze | |||||
2009-03-22 | Revert "socket_wrapper: fix connect() for dgram sockets, if the destination ↵ | Stefan Metzmacher | 1 | -7/+3 | |
isn't there yet" This reverts commit 66dc53ee017d74a6f610bbe04337f064901fe2a1. Somehow this leads to timeouts in some tests, samba4.ldb.ldapi and samba4.rpc.schannel. I need to look at it more closely later... metze | |||||
2009-03-21 | socket_wrapper: fix connect() for dgram sockets, if the destination isn't ↵ | Stefan Metzmacher | 1 | -3/+7 | |
there yet metze | |||||
2009-03-10 | socket_wrapper: wrap readv() and writev() | Stefan Metzmacher | 2 | -7/+137 | |
metze | |||||
2009-03-09 | socket_wrapper: try to make ipv6 support more portable | Stefan Metzmacher | 1 | -9/+22 | |
The internal structure of in6_addr isn't always the same. metze | |||||
2009-03-08 | socket_wrapper: downgrade ipv6 sockets to ipv4 is in connect() if the dest ↵ | Stefan Metzmacher | 1 | -5/+13 | |
is ipv4 We only do this if the socket isn't explicit bound yet. metze | |||||
2009-03-08 | socket_wrapper: correctly handle connected dgram sockets | Stefan Metzmacher | 1 | -0/+26 | |
metze | |||||
2009-03-08 | socket_wrapper: make it possible to bind to '::' | Stefan Metzmacher | 1 | -1/+3 | |
metze | |||||
2009-03-04 | socket wrapper: Fix 'might be used uninitialized' warning | Tim Prouty | 1 | -4/+4 | |
2009-03-04 | socket_wrapper: add multiple interface support for ipv6 | Stefan Metzmacher | 1 | -10/+39 | |
We use FD00::5357:5FXX in the same way we use 127.0.0.XX metze | |||||
2009-03-04 | socket_wrapper: add ipv6 pcap support | Stefan Metzmacher | 1 | -3/+87 | |
metze | |||||
2009-03-04 | socket_wrapper: pass down sockaddr instead of sockaddr_in to prepare pcap ↵ | Stefan Metzmacher | 1 | -78/+100 | |
support for ipv6 metze | |||||
2009-03-04 | socket_wrapper: prepare pcap support for ipv6 traffic | Stefan Metzmacher | 1 | -148/+170 | |
metze | |||||
2009-03-04 | socket_wrapper: don't crash if we get EAGAIN from real_recv() | Stefan Metzmacher | 1 | -1/+1 | |
This fixes a crash in the ldaps tests with socket wrapper pcap support. metze | |||||
2009-01-20 | socket_wrapper: fix PCAP support broken by ↵ | Stefan Metzmacher | 1 | -3/+1 | |
aaea68791cfea45c6fa69abc93ad6d0e832d0283 We should note close the fd after writing the first packet. metze | |||||
2009-01-15 | Fix indentation for some configure options. | Jelmer Vernooij | 1 | -1/+1 | |
2008-12-22 | In gcc version 4.3.2 we get warnings for functions declared with | Jeremy Allison | 1 | -2/+10 | |
attribute warn_unused_result. Start to fix these. Jeremy. | |||||
2008-10-07 | Changed variable name from f19086872ec734fff3f2119712ff24117bec4e5e to match ↵ | Tim Prouty | 1 | -19/+19 | |
v3-[23]-test | |||||
2008-10-06 | Fixed "declaration shadows global declaration" warnings. | Tim Prouty | 1 | -19/+19 | |
The patch simply uses a more descriptive variable name for tcp_seq. ../lib/socket_wrapper/socket_wrapper.c:753: warning: declaration of 'tcp_seq' shadows a global declaration /usr/include/netinet/tcp.h:40: warning: shadowed declaration is here ../lib/socket_wrapper/socket_wrapper.c: In function `swrap_marshall_packet': ../lib/socket_wrapper/socket_wrapper.c:919: warning: declaration of 'tcp_seq' shadows a global declaration /usr/include/netinet/tcp.h:40: warning: shadowed declaration is here | |||||
2008-09-17 | Move common libraries from root to lib/. | Jelmer Vernooij | 5 | -0/+2112 | |