1. 05 12月, 2013 2 次提交
  2. 18 10月, 2013 1 次提交
  3. 15 9月, 2013 1 次提交
  4. 25 7月, 2013 2 次提交
  5. 02 4月, 2013 1 次提交
  6. 05 3月, 2013 1 次提交
  7. 13 1月, 2013 1 次提交
  8. 20 12月, 2012 1 次提交
  9. 16 11月, 2012 1 次提交
    • R
      disable SO_REUSEPORT in sys/socket.h · 91738d02
      Rich Felker 提交于
      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.
      91738d02
  10. 06 11月, 2012 1 次提交
  11. 30 9月, 2012 1 次提交
  12. 09 9月, 2012 2 次提交
  13. 07 9月, 2012 1 次提交
    • R
      use restrict everywhere it's required by c99 and/or posix 2008 · 400c5e5c
      Rich Felker 提交于
      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.
      400c5e5c
  14. 06 8月, 2012 1 次提交
    • R
      fix socket.h on mips · 7fee5f96
      Rich Felker 提交于
      why does mips have to be gratuitously incompatible in every possible
      imaginable way?
      7fee5f96
  15. 13 7月, 2012 1 次提交
    • R
      workaround another sendmsg kernel bug on 64-bit machines · 96107564
      Rich Felker 提交于
      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.
      96107564
  16. 19 9月, 2011 1 次提交
  17. 17 6月, 2011 1 次提交
  18. 15 2月, 2011 1 次提交
  19. 12 2月, 2011 1 次提交