1. b76bdf8 The connect timeout code wasn't working on Windows. by Guido van Rossum · 21 years ago
  2. 1df9fdd socket_inet_aton(): ip_addr was left undefined before use in the by Tim Peters · 21 years ago
  3. 88f115b Ummm, try to get it right this time by Neal Norwitz · 21 years ago
  4. 10b214c Use configure to check for inet_aton. by Neal Norwitz · 21 years ago
  5. ad05cdf Addressing SF bug #643005, implement socket.inet_aton() using by Guido van Rossum · 21 years ago
  6. 8f24cdc SF patch #678257 by Geoff Talvola. by Guido van Rossum · 21 years ago
  7. fb8595d Patch #661760: Cygwin auto-import module patch by Jason Tishler · 22 years ago
  8. 34d3e2d OS/2 sockets do not support AF_UNIX, even though EMX headers define it by Andrew MacIntyre · 22 years ago
  9. cf8f47e Patch #650422: Use Posix AF_ constants instead of PF_ ones. by Martin v. Löwis · 22 years ago
  10. 9e43730 Don't include <ioctl.h> unless on __VMS. by Martin v. Löwis · 22 years ago
  11. 79acb9e Patch #614055: Support OpenVMS. by Martin v. Löwis · 22 years ago
  12. 39d22e5 Use O_NONBLOCK rather than O_NDELAY, so we get POSIX non-blocking I/O. by Neal Norwitz · 22 years ago
  13. 8eb92a0 Patch #608999: Fix portability problems with MIPSPro 7.x by Martin v. Löwis · 22 years ago
  14. 83a072d Update the module doc comment. by Guido van Rossum · 22 years ago
  15. 90128ba SF bug #592645 fix memory leak in socket.getaddrinfo by Neal Norwitz · 22 years ago
  16. 12e3c71 The other half of the patches added to SF patch 555085 by A I by Guido van Rossum · 22 years ago
  17. 22a9715 Clean up some docstrings. Some docstrings didn't show their return by Guido van Rossum · 22 years ago
  18. 5814187 internal_connect(): Windows. When sock_timeout > 0 and connect() yields by Tim Peters · 22 years ago
  19. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  20. ddc6f47 Pass length of result structure into setipaddr. Fixes bug #565747. by Martin v. Löwis · 22 years ago
  21. 825e47b Put checks for error returns in the right place. by Jeremy Hylton · 22 years ago
  22. c075e19 Extended socket.htonl and ntohl to accept longs. by Jeremy Hylton · 22 years ago
  23. 62b1ab1 Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link by Mark Hammond · 22 years ago
  24. ad65490 Bail out early from internal_select() when socket file descriptor by Guido van Rossum · 22 years ago
  25. a12b4cf A Python float is a C double; redeclare defaulttimeout as such; stops by Tim Peters · 22 years ago
  26. 1693ba8 Silence warning about getdefaulttimeout in PyMethodDef. by Guido van Rossum · 22 years ago
  27. 9d0c8ce Add default timeout functionality. This adds setdefaulttimeout() and by Guido van Rossum · 22 years ago
  28. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  29. 84262fb Mac OS X Jaguar (developer preview) seems to have a working getaddrinfo(). by Jack Jansen · 22 years ago
  30. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  31. 7b8bac1 Fix non-blocking connect() for Windows. Refactored the code by Guido van Rossum · 22 years ago
  32. 11ba094 Major overhaul of timeout sockets: by Guido van Rossum · 22 years ago
  33. 7aec4a2 work around name clash with OS/2 TCPIP routine sock_init() by Andrew MacIntyre · 22 years ago
  34. 1790e65 Move the conex_finally label up, so that the errno value is always returned. by Guido van Rossum · 22 years ago
  35. e8008f0 I decided to change the interaction between setblocking() and by Guido van Rossum · 22 years ago
  36. c4fcfa3 Major cleanup. Renamed static methods to avoid Py prefix. Other misc by Guido van Rossum · 22 years ago
  37. 3eede5a Whitespace normalization, folding long lines, uniform comment by Guido van Rossum · 22 years ago
  38. b9e916a Correct several blunders in the timeout code, mostly my own fault (for by Guido van Rossum · 22 years ago
  39. 67f7a38 SF patch 555085 (timeout socket implementation) by Michael Gilfix. by Guido van Rossum · 22 years ago
  40. c9a5577 The insint() function is not used. Nuke it. by Guido van Rossum · 22 years ago
  41. e1c478f The tp_new implementation should initialize the errorhandler field, by Guido van Rossum · 22 years ago
  42. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 22 years ago
  43. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  44. 8ab04b4 Got rid of ifdefs for long-obsolete GUSI versions. by Jack Jansen · 22 years ago
  45. 4baedc1 Use the PyModule_Add*() APIs instead of manipulating the module dict directly. by Fred Drake · 22 years ago
  46. 7e78acb Remove last occurrance of PyArg_GetInt. It is deprecated, by Neal Norwitz · 22 years ago
  47. 6d8898b Due to interaction between the MSL C library and the GUSI I/O library I can get reads from sockets to work consistently either for unbuffered binary files or for buffered binary files, but not for both:-( by Jack Jansen · 22 years ago
  48. ba43e87 OS/2 EMX port changes (Modules part of patch #450267): by Andrew MacIntyre · 22 years ago
  49. 272cb40 Patch #520062: Support IPv6 with VC.NET. by Martin v. Löwis · 22 years ago
  50. 643a7fc Moved the declaration of PySocketSock_Type from socketmodule.h to by Tim Peters · 22 years ago
  51. e6cc5b6 Remove extraneous variable 'total', as reported by James Rucker. by Martin v. Löwis · 22 years ago
  52. 976ade6 Also fix the comment. by Marc-André Lemburg · 22 years ago
  53. bb8b78b Fix the name of the header file. by Marc-André Lemburg · 22 years ago
  54. a5d2b4c Break SSL support out of _socket module and place it into a new by Marc-André Lemburg · 22 years ago
  55. 43b936d Patch #477750: Use METH_ constants in Modules. by Martin v. Löwis · 22 years ago
  56. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
  57. 3cde2cb Add TCP socket options from glibc 2.2.4. Fixes #495680. 2.2.1 bugfix candidate. by Martin v. Löwis · 23 years ago
  58. 44ddbde Remove INET6 define. Use ENABLE_IPV6 instead. by Martin v. Löwis · 23 years ago
  59. 75cdad5 More sprintf -> PyOS_snprintf. by Tim Peters · 23 years ago
  60. 885d457 sprintf -> PyOS_snprintf in some "obviously safe" cases. by Tim Peters · 23 years ago
  61. 3072ecd Fix docstring typo by Andrew M. Kuchling · 23 years ago
  62. fba64e1 Test for negative buffer sizes. Fixes #482871. by Martin v. Löwis · 23 years ago
  63. 03f96bd Fixes to compile cPickle.c & socketmodule.c on cygwin and possibly by Michael W. Hudson · 23 years ago
  64. f0b11d2 Fix memory leaks detecting in bug report #478003. by Martin v. Löwis · 23 years ago
  65. 603c683 SF patch 473749 compile under OS/2 VA C++, from Michael Muller. by Tim Peters · 23 years ago
  66. 06b1d21 Correct getnameinfo refcounting and tuple parsing. Fixes #476648. by Martin v. Löwis · 23 years ago
  67. c32410a PySocketSock_connect_ex(): On Windows, return the correct Windows exit by Tim Peters · 23 years ago
  68. ca6dfa5 Oops. In the tp_name field, the name should be "_socket.socket", not by Guido van Rossum · 23 years ago
  69. 384ca9c Made SocketType and socket the same thing: a subclassable type whose by Guido van Rossum · 23 years ago
  70. 9f7a539 Add sendall() method, which loops until all data is written or an by Guido van Rossum · 23 years ago
  71. 7c4b5fa After discussion with itojun, it was clarified that Tru64 is in error, by Martin v. Löwis · 23 years ago
  72. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  73. b8fc972 Fix typo. Thanks to Jack Jansen for spotting it. by Martin v. Löwis · 23 years ago
  74. 861a65b Include netdb.h to detect getaddrinfo. Work around problem with getaddrinfo by Martin v. Löwis · 23 years ago
  75. cad8fa1 (Hopefully) fix SF bug #472675: CVS socketmodule now doesn't compile by Guido van Rossum · 23 years ago
  76. de80f2e Expose three OpenSSL API calls for dealing with the PRNG. by Jeremy Hylton · 23 years ago
  77. 17209fc Fix a bunch of warnings reported by Skip. by Guido van Rossum · 23 years ago
  78. 1c07b4b Test for __sun instead of __sun__, since SUNWspro only defines the latter; by Martin v. Löwis · 23 years ago
  79. 716aac0 PySocket_getaddrinfo(): fix two refcount bugs, both having to do with by Guido van Rossum · 23 years ago
  80. e2adc6c Use PySocket_Err() instead of PyErr_SetFromErrno(). by Jeremy Hylton · 23 years ago
  81. ba69936 Commit parts of SF patch #462759 by Jeremy Hylton · 23 years ago
  82. ae0013d Convert socket methods to use METH_O and METH_NOARGS where possible. by Jeremy Hylton · 23 years ago
  83. 57ca873 Add a bunch of SSL error constants by Jeremy Hylton · 23 years ago
  84. 5b6ce5a Lots of code reorganization with a few small API changes. by Jeremy Hylton · 23 years ago
  85. 22738b9 Do simple error checking before doing any SSL calls. by Jeremy Hylton · 23 years ago
  86. b0b0bd6 USe PyObject_SetString() instead of PyObject_SetObject() in newSSLObject(). by Jeremy Hylton · 23 years ago
  87. ec4b545 In newSSLObject(), initialize the various members of an SSLObject to NULL. by Jeremy Hylton · 23 years ago
  88. ab00645 A bit of reformatting to match the standard style by Jeremy Hylton · 23 years ago
  89. f86d63e Fix two memory leaks in socket.ssl(). by Jeremy Hylton · 23 years ago
  90. 79248aa SF bug [#456252] Python should never stomp on [u]intptr_t. by Tim Peters · 23 years ago
  91. cfb1675 SSL_dealloc(): Apply the change suggested in SF bug #425370 which by Barry Warsaw · 23 years ago
  92. 1ba6bad It will always be a string, because it is created just before this call. by Jeremy Hylton · 23 years ago
  93. f95dd0a Fix portability problems with glibc 2.0, as reported in #449157. by Martin v. Löwis · 23 years ago
  94. f65b1a1 Bump size of sprintf buffer. Suggested by Alex Coventry. by Martin v. Löwis · 23 years ago
  95. 1ba3fd5 Autotest for netpacket/packet.h, as it is not available on all Linux versions. by Martin v. Löwis · 23 years ago
  96. bcf4b35 Add more constants. Contributed by itojun. by Martin v. Löwis · 23 years ago
  97. 864e9ff Auto-detect hstrerror. Raise socket.herror in PyH_Error. Register the three by Martin v. Löwis · 23 years ago
  98. ae26dc2 Do not use the system getaddrinfo on Mac OS X. Fixes bug #445928. by Martin v. Löwis · 23 years ago
  99. 03d1b18 Enable PyOS_snprintf() et al. during alpha phase of 2.2.0 and by Marc-André Lemburg · 23 years ago
  100. 0b8de98 Temporarily work around bug #445928: Force usage of getaddrinfo emulation by Martin v. Löwis · 23 years ago