| Commit message (Expand) | Author | Age | Files | Lines |
| * | PySocketSock_connect_ex(): On Windows, return the correct Windows exit | Tim Peters | 2001-10-30 | 1 | -1/+6 |
| * | Oops. In the tp_name field, the name should be "_socket.socket", not | Guido van Rossum | 2001-10-28 | 1 | -2/+2 |
| * | Made SocketType and socket the same thing: a subclassable type whose | Guido van Rossum | 2001-10-27 | 1 | -119/+167 |
| * | Add sendall() method, which loops until all data is written or an | Guido van Rossum | 2001-10-26 | 1 | -2/+44 |
| * | After discussion with itojun, it was clarified that Tru64 is in error, | Martin v. Löwis | 2001-10-25 | 1 | -1/+3 |
| * | SF patch #474590 -- RISC OS support | Guido van Rossum | 2001-10-24 | 1 | -15/+10 |
| * | Fix typo. Thanks to Jack Jansen for spotting it. | Martin v. Löwis | 2001-10-24 | 1 | -1/+1 |
| * | Include netdb.h to detect getaddrinfo. Work around problem with getaddrinfo | Martin v. Löwis | 2001-10-24 | 1 | -0/+6 |
| * | (Hopefully) fix SF bug #472675: CVS socketmodule now doesn't compile | Guido van Rossum | 2001-10-19 | 1 | -1/+1 |
| * | Expose three OpenSSL API calls for dealing with the PRNG. | Jeremy Hylton | 2001-10-18 | 1 | -0/+67 |
| * | Fix a bunch of warnings reported by Skip. | Guido van Rossum | 2001-10-15 | 1 | -8/+8 |
| * | Test for __sun instead of __sun__, since SUNWspro only defines the latter; | Martin v. Löwis | 2001-10-13 | 1 | -1/+1 |
| * | PySocket_getaddrinfo(): fix two refcount bugs, both having to do with | Guido van Rossum | 2001-10-12 | 1 | -3/+6 |
| * | Use PySocket_Err() instead of PyErr_SetFromErrno(). | Jeremy Hylton | 2001-10-11 | 1 | -3/+2 |
| * | Commit parts of SF patch #462759 | Jeremy Hylton | 2001-10-11 | 1 | -68/+68 |
| * | Convert socket methods to use METH_O and METH_NOARGS where possible. | Jeremy Hylton | 2001-10-11 | 1 | -50/+39 |
| * | Add a bunch of SSL error constants | Jeremy Hylton | 2001-10-11 | 1 | -0/+12 |
| * | Lots of code reorganization with a few small API changes. | Jeremy Hylton | 2001-10-10 | 1 | -45/+113 |
| * | Do simple error checking before doing any SSL calls. | Jeremy Hylton | 2001-10-10 | 1 | -5/+5 |
| * | USe PyObject_SetString() instead of PyObject_SetObject() in newSSLObject(). | Jeremy Hylton | 2001-10-10 | 1 | -14/+9 |
| * | In newSSLObject(), initialize the various members of an SSLObject to NULL. | Jeremy Hylton | 2001-10-10 | 1 | -2/+8 |
| * | A bit of reformatting to match the standard style | Jeremy Hylton | 2001-10-10 | 1 | -7/+7 |
| * | Fix two memory leaks in socket.ssl(). | Jeremy Hylton | 2001-10-10 | 1 | -39/+29 |
| * | SF bug [#456252] Python should never stomp on [u]intptr_t. | Tim Peters | 2001-08-29 | 1 | -1/+1 |
| * | SSL_dealloc(): Apply the change suggested in SF bug #425370 which | Barry Warsaw | 2001-08-20 | 1 | -1/+1 |
| * | It will always be a string, because it is created just before this call. | Jeremy Hylton | 2001-08-20 | 1 | -1/+1 |
| * | Fix portability problems with glibc 2.0, as reported in #449157. | Martin v. Löwis | 2001-08-15 | 1 | -0/+4 |
| * | Bump size of sprintf buffer. Suggested by Alex Coventry. | Martin v. Löwis | 2001-08-12 | 1 | -1/+1 |
| * | Autotest for netpacket/packet.h, as it is not available on all Linux versions. | Martin v. Löwis | 2001-08-10 | 1 | -6/+6 |
| * | Add more constants. Contributed by itojun. | Martin v. Löwis | 2001-08-04 | 1 | -1/+73 |
| * | Auto-detect hstrerror. Raise socket.herror in PyH_Error. Register the three | Martin v. Löwis | 2001-08-04 | 1 | -2/+4 |
| * | Do not use the system getaddrinfo on Mac OS X. Fixes bug #445928. | Martin v. Löwis | 2001-08-03 | 1 | -6/+16 |
| * | Enable PyOS_snprintf() et al. during alpha phase of 2.2.0 and | Marc-André Lemburg | 2001-07-31 | 1 | -10/+2 |
| * | Temporarily work around bug #445928: Force usage of getaddrinfo emulation | Martin v. Löwis | 2001-07-30 | 1 | -2/+6 |
| * | Use HAVE_SNPRINTF, not HAVE_SPRINTF, for checking the availability of | Thomas Wouters | 2001-07-24 | 1 | -1/+1 |
| * | Autocheck for snprintf, and use sprintf if it is not available. | Martin v. Löwis | 2001-07-24 | 1 | -3/+8 |
| * | Before declaring h_errno, do not check for Win32 only. Instead, do check | Martin v. Löwis | 2001-07-23 | 1 | -1/+1 |
| * | Instead of accessing ss_family, cast sockaddr_storage to sockaddr and access ... | Martin v. Löwis | 2001-07-23 | 1 | -1/+5 |
| * | Patch #401196: IPv6 extensions to the socket module. | Martin v. Löwis | 2001-07-21 | 1 | -103/+546 |
| * | Silence warnings in MSVC++: hide unused variables, add constness back to | Martin v. Löwis | 2001-07-21 | 1 | -5/+5 |
| * | Clean up some warnings from the SGI compiler. | Fred Drake | 2001-07-19 | 1 | -3/+3 |
| * | Port getaddrinfo to MSVC++. | Martin v. Löwis | 2001-07-19 | 1 | -12/+0 |
| * | Remove const-ness in inet_pton declaration. | Martin v. Löwis | 2001-06-25 | 1 | -1/+1 |
| * | Fix typos in inet_pton/inet_ntop. | Martin v. Löwis | 2001-06-24 | 1 | -2/+3 |
| * | Provide a definition for offsetof. | Martin v. Löwis | 2001-06-24 | 1 | -0/+8 |
| * | Emulate inet_{pton,ntop} on systems that don't provide it. | Martin v. Löwis | 2001-06-24 | 1 | -0/+41 |
| * | Pure brute-force hackery to allow Python to build on Windows again, | Tim Peters | 2001-06-24 | 1 | -0/+12 |
| * | Patch #401196: Configuration machinery for IPv6. | Martin v. Löwis | 2001-06-23 | 1 | -0/+10 |
| * | Fix a minor style consistency issue. | Fred Drake | 2001-05-11 | 1 | -3/+3 |
| * | Three uses of makesockaddr() used sockaddr buffers that had not be cleared; | Fred Drake | 2001-05-09 | 1 | -1/+4 |