Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2013-12-04 | move struct ucred under _GNU_SOURCE in sys/socket.h for clean posix namespace | Szabolcs Nagy | -0/+2 | |
2013-12-04 | fix SHUT_WR typo in sys/socket.h and duplicate definitions of SHUT_* | Szabolcs Nagy | -5/+1 | |
2013-10-18 | fix typo in socket.h (wrong macro name) | Szabolcs Nagy | -1/+1 | |
2013-09-15 | sys/socket.h: add new SO_BUSY_POLL socket option | Szabolcs Nagy | -0/+1 | |
low latency busy poll sockets are new in linux v3.11 | ||||
2013-07-25 | add protocol families PF_IB and PF_VSOCK to socket.h | Szabolcs Nagy | -1/+5 | |
linux commit 8d36eb01da5d371feffa280e501377b5c450f5a5 (2013-05-29) added PF_IB for InfiniBand linux commit d021c344051af91f42c5ba9fdedc176740cbd238 (2013-02-06) added PF_VSOCK for VMware sockets | ||||
2013-07-24 | add SO_SELECT_ERR_QUEUE to socket.h | Szabolcs Nagy | -0/+1 | |
introduced in linux-v3.10 commit 7d4c04fc170087119727119074e72445f2bb192b | ||||
2013-04-01 | add new socket options to sys/socket.h following linux | Szabolcs Nagy | -2/+17 | |
2013-03-04 | fix some obscure header type size/alignment issues | Rich Felker | -4/+2 | |
2013-01-12 | add missing protocol families to sys/socket.h | Szabolcs Nagy | -1/+11 | |
missing protocol families based on current linux headers: PF_RDS, PF_LLC, PF_CAN, PF_TIPC, PF_NFC | ||||
2012-12-19 | socket.h: add SO_(SND/RCV)BUFFORCE to generic block | rofl0r | -0/+2 | |
2012-11-15 | disable SO_REUSEPORT in sys/socket.h | Rich Felker | -1/+1 | |
although a number is reserved for it, this option is not implemented on Linux and does not work. defining it causes some applications to use it, and subsequently break due to its failure. | ||||
2012-11-05 | fix numerous mips abi constant definition mismatches | Rich Felker | -0/+7 | |
2012-09-29 | always expose accept4 | Rich Felker | -4/+1 | |
it will be in the next version of POSIX | ||||
2012-09-08 | add acct, accept4, setns, and dup3 syscalls (linux extensions) | Rich Felker | -0/+4 | |
based on patch by Justin Cormack | ||||
2012-09-08 | remove all remaining redundant __restrict/__inline/_Noreturn defs | Rich Felker | -5/+1 | |
2012-09-06 | use restrict everywhere it's required by c99 and/or posix 2008 | Rich Felker | -5/+11 | |
to deal with the fact that the public headers may be used with pre-c99 compilers, __restrict is used in place of restrict, and defined appropriately for any supported compiler. we also avoid the form [restrict] since older versions of gcc rejected it due to a bug in the original c99 standard, and instead use the form *restrict. | ||||
2012-08-05 | fix socket.h on mips | Rich Felker | -0/+3 | |
why does mips have to be gratuitously incompatible in every possible imaginable way? | ||||
2012-07-12 | workaround another sendmsg kernel bug on 64-bit machines | Rich Felker | -7/+0 | |
the kernel wrongly expects the cmsg length field to be size_t instead of socklen_t. in order to work around the issue, we have to impose a length limit and copy to a local buffer. the length limit should be more than sufficient for any real-world use; these headers are only used for passing file descriptors and permissions between processes over unix sockets. | ||||
2011-09-18 | cleanup more bits cruft (sysmacros and socket) | Rich Felker | -0/+196 | |
2011-06-16 | fix some struct padding to match LSB/glibc ABI where it may be helpful | Rich Felker | -2/+4 | |
2011-02-14 | extensive header cleanup for standards conformance & correctness | Rich Felker | -0/+1 | |
thanks to Peter Mazinger (psm) for pointing many of these issues out and submitting a patch on which this commit is loosely based | ||||
2011-02-12 | initial check-in, version 0.5.0v0.5.0 | Rich Felker | -0/+64 | |