1. 2856e5f Support for buffer protocol for socket and struct. by Martin Blais · 18 years ago
  2. 0452049 Fix SF bug #1476111: SystemError in socket sendto. The AF_INET6 and by Thomas Wouters · 19 years ago
  3. d06b6f2 Patch 1471925 - Weak linking support for OSX by Ronald Oussoren · 19 years ago
  4. a9017c3 SF Patch #1062014: AF_UNIX sockets under Linux have a special by Armin Rigo · 19 years ago
  5. 7e75f1a Patch #1191065: Fix preprocessor problems on systems where recvfrom is a macro. by Martin v. Löwis · 19 years ago
  6. 2db1550 Off-by-one buffer overflow error. by Armin Rigo · 19 years ago
  7. 5fe60e7 Patch #1462080: Conditionalize some NETLINK defines. by Martin v. Löwis · 19 years ago
  8. dcfdae7 Bug #1460564: document that socket.fromfd() duplicates the given by Georg Brandl · 19 years ago
  9. bc45a3f RFE #567972: Socket objects' family, type and proto properties are by Georg Brandl · 19 years ago
  10. 02cbf4a More unconsting. by Martin v. Löwis · 19 years ago
  11. 668a94a NETLINK_TCPDIAG and NETLINK_NFLOG aren't defined on older Linux by Guido van Rossum · 19 years ago
  12. dbd8339 Bug #854823: socketmodule now builds on Sun platforms even when by Georg Brandl · 19 years ago
  13. f84d1b9 Introduce Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE. Proposed by Tim Peters. by Martin v. Löwis · 19 years ago
  14. 082b2df Bug #876637, prevent stack corruption when socket descriptor by Neal Norwitz · 19 years ago
  15. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  16. 6585166 Get socketmodule to build after adding netlink support. by Neal Norwitz · 19 years ago
  17. d056005 Change build format of netlink addresses. by Martin v. Löwis · 19 years ago
  18. 11017b1 Patch #1103116: AF_NETLINK sockets basic support. by Martin v. Löwis · 19 years ago
  19. 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
  20. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  21. 9ceebd5 Patch #1288833: Removed thread lock from socket.getaddrinfo on by Hye-Shik Chang · 19 years ago
  22. 8ee3e5a - Changes donated by Elemental Security to make it work on AIX 5.3 by Guido van Rossum · 19 years ago
  23. d2e3ba7 patch [ 756021 ] Allow socket.inet_aton("255.255.255.255") on Windows by Georg Brandl · 19 years ago
  24. 80961f3 Fix apparently trivial buffer overflow (SF bug 1060396). by Jeremy Hylton · 20 years ago
  25. 3079391 Just remove the #include of signal.h. That it was C++-commented out by Michael W. Hudson · 20 years ago
  26. f7c8d93 Use C89 style comment for old compilers by Neal Norwitz · 20 years ago
  27. 9ceaa72 Patch #975056 - fixes for restartable signals on *BSD. In addition, by Anthony Baxter · 20 years ago
  28. 87de0ca Silence a compiler warning by supplying the correct argument type to by Raymond Hettinger · 20 years ago
  29. 8ea5bdf Patch for compilation on IRIX from rwgk on http://python.org/sf/728330 by Trent Mick · 20 years ago
  30. a708d6e Apply patch from http://python.org/sf/728330 to fix socket module compilation on Solaris 2.6, HP-UX 11, AIX 5.1 and (possibly) some IRIX versions. by Trent Mick · 20 years ago
  31. e8bbfe4 Patch #1015012. Improve markup and punctuation in libsocket.tex by Dave Cole · 20 years ago
  32. b92b7ed Back out 1.289, which breaks platforms needing addrinfo.h, and by Martin v. Löwis · 20 years ago
  33. 07fda7e Updated the socketpair() docstring and documentation to explain that the by Dave Cole · 20 years ago
  34. 0fc8575 Removed unnecessary calls to signal() to ignore SIGPIPE. SIGPIPE is ignored by Dave Cole · 20 years ago
  35. c246cb7 Bug #1001857: socketmodule does not build under cygwin by Jason Tishler · 20 years ago
  36. 331708b Patch #1003700: Add socketpair function to socket module. by Dave Cole · 20 years ago
  37. cbcff93 Restore compilation on MSVC++ 6.0 by Raymond Hettinger · 20 years ago
  38. a57ec93 Fix [ 1001018 ]: Windows: setdefaulttimeout causes unnecessary timeouts on by Mark Hammond · 20 years ago
  39. 81aec4b Patch #984654: Add more address family constants. by Martin v. Löwis · 20 years ago
  40. b8e1717 [Patch #947352 from Jason Andryuk] Add support for AF_PACKET hardware addresses by Andrew M. Kuchling · 20 years ago
  41. 42851ab [Patch #982665 ] add SO_EXCLUSIVEADDRUSE constant by Andrew M. Kuchling · 20 years ago
  42. 5a8b459 OS/2 EMX needs addrinfo.h for code included from getaddrinfo.c by Andrew MacIntyre · 20 years ago
  43. 11b91a0 Added socket.getservbyport(), and make its second argument and that of by Barry Warsaw · 20 years ago
  44. 558d9bf Patch #929192: Improvements to bluetooth support. by Martin v. Löwis · 20 years ago
  45. 04697e8 Patch #924294: Do not check for AF_INET6 if it is not defined. by Martin v. Löwis · 20 years ago
  46. 76b8cc8 Band-aid type fix for by Michael W. Hudson · 20 years ago
  47. daedf21 Fixes for AF_UNIX support on OS/2: by Andrew MacIntyre · 21 years ago
  48. d12dfbb OS/2's TCP/IP stack supports AF_UNIX sockets, with the limitation that by Andrew MacIntyre · 21 years ago
  49. 06c3479 Make socket.sslerror a subclass of socket.error . by Brett Cannon · 21 years ago
  50. 5d7c067 Make socketmodule compile again on a modern Linux (that supports Bluetooth). by Anthony Baxter · 21 years ago
  51. 7befb99 remove support for missing ANSI C header files (limits.h, stddef.h, etc). by Skip Montanaro · 21 years ago
  52. 8126860 Add FreeBSD support for bluetooth sockets. by Hye-Shik Chang · 21 years ago
  53. 12af048 Patch #874083: Bluetooth support for socket module. by Martin v. Löwis · 21 years ago
  54. da91d02 Add IPV6_ socket options from RFCs 3493 and 3542. Fixes #867012. by Martin v. Löwis · 21 years ago
  55. a7b673f Fix erroneus argument parsing of socket.htons() on 64bit big endian machines. by Hye-Shik Chang · 21 years ago
  56. 94681fc Patch #849595: Add socket.shutdown() constants. by Martin v. Löwis · 21 years ago
  57. 4bae2d5 Getting rid of code dependent on GUSI or the MetroWerks compiler. by Jack Jansen · 21 years ago
  58. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  59. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  60. bab23cf made the SGI INET_ADDRSTRLEN define apply for any compiler on Irix. Both the by Anthony Baxter · 21 years ago
  61. a0f1734 Patch #813445: Add missing socket.IPPROTO_IPV6. Backported to 2.3. by Martin v. Löwis · 21 years ago
  62. 5db099a Release host name memory. Fixes #783312. Will backport to 2.3. by Martin v. Löwis · 21 years ago
  63. 1064909 Patch #781722: Reject AF_INET6 if IPv6 is disabled. Will backport to 2.3. by Martin v. Löwis · 21 years ago
  64. fb509a3 Get socketmodule compiling on IRIX 6.5.10. by Jeremy Hylton · 21 years ago
  65. 14350ab Fix [ 766669 ] Consistent GPF on exit by Mark Hammond · 21 years ago
  66. ef7343c SF patch #760257: add socket.timeout exception (Contributed by Bob Halley) by Raymond Hettinger · 21 years ago
  67. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 22 years ago
  68. 16e426b Yet another addition to [731644]: only use the lock if thread-support by Just van Rossum · 22 years ago
  69. 09aecd7 Addition to [731644]: also use the lock when using the getaddrinfo by Just van Rossum · 22 years ago
  70. 1040d2c [ 731644] & [ 604210 ] Release the GIL around getaddrinfo(), yet protect by Just van Rossum · 22 years ago
  71. e941617 Patch #724588: Check whether the address of hstrerror and inet_pton can by Martin v. Löwis · 22 years ago
  72. c16f3bd Patch #708495: Port more stuff to OpenVMS. by Martin v. Löwis · 22 years ago
  73. 0e85f9d Patch 731209: Restore socketmodule's behaviour with dotted quad addresses by Anthony Baxter · 22 years ago
  74. fccac2e Patch #725942: Always rename emulation functions. by Martin v. Löwis · 22 years ago
  75. 47dfa4a Patch by Jp Calderone: by Guido van Rossum · 22 years ago
  76. 2548c73 Implement IDNA (Internationalized Domain Names in Applications). by Martin v. Löwis · 22 years ago
  77. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 22 years ago
  78. b76bdf8 The connect timeout code wasn't working on Windows. by Guido van Rossum · 22 years ago
  79. 1df9fdd socket_inet_aton(): ip_addr was left undefined before use in the by Tim Peters · 22 years ago
  80. 88f115b Ummm, try to get it right this time by Neal Norwitz · 22 years ago
  81. 10b214c Use configure to check for inet_aton. by Neal Norwitz · 22 years ago
  82. ad05cdf Addressing SF bug #643005, implement socket.inet_aton() using by Guido van Rossum · 22 years ago
  83. 8f24cdc SF patch #678257 by Geoff Talvola. by Guido van Rossum · 22 years ago
  84. fb8595d Patch #661760: Cygwin auto-import module patch by Jason Tishler · 22 years ago
  85. 34d3e2d OS/2 sockets do not support AF_UNIX, even though EMX headers define it by Andrew MacIntyre · 22 years ago
  86. cf8f47e Patch #650422: Use Posix AF_ constants instead of PF_ ones. by Martin v. Löwis · 22 years ago
  87. 9e43730 Don't include <ioctl.h> unless on __VMS. by Martin v. Löwis · 22 years ago
  88. 79acb9e Patch #614055: Support OpenVMS. by Martin v. Löwis · 22 years ago
  89. 39d22e5 Use O_NONBLOCK rather than O_NDELAY, so we get POSIX non-blocking I/O. by Neal Norwitz · 22 years ago
  90. 8eb92a0 Patch #608999: Fix portability problems with MIPSPro 7.x by Martin v. Löwis · 22 years ago
  91. 83a072d Update the module doc comment. by Guido van Rossum · 22 years ago
  92. 90128ba SF bug #592645 fix memory leak in socket.getaddrinfo by Neal Norwitz · 22 years ago
  93. 12e3c71 The other half of the patches added to SF patch 555085 by A I by Guido van Rossum · 22 years ago
  94. 22a9715 Clean up some docstrings. Some docstrings didn't show their return by Guido van Rossum · 22 years ago
  95. 5814187 internal_connect(): Windows. When sock_timeout > 0 and connect() yields by Tim Peters · 22 years ago
  96. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  97. ddc6f47 Pass length of result structure into setipaddr. Fixes bug #565747. by Martin v. Löwis · 22 years ago
  98. 825e47b Put checks for error returns in the right place. by Jeremy Hylton · 22 years ago
  99. c075e19 Extended socket.htonl and ntohl to accept longs. by Jeremy Hylton · 22 years ago
  100. 62b1ab1 Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link by Mark Hammond · 22 years ago