summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-2/+2
* made the SGI INET_ADDRSTRLEN define apply for any compiler on Irix. Both theAnthony Baxter2003-10-041-4/+7
* Patch #813445: Add missing socket.IPPROTO_IPV6. Backported to 2.3.Martin v. Löwis2003-10-031-0/+3
* Release host name memory. Fixes #783312. Will backport to 2.3.Martin v. Löwis2003-08-071-6/+12
* Patch #781722: Reject AF_INET6 if IPv6 is disabled. Will backport to 2.3.Martin v. Löwis2003-08-051-0/+8
* Get socketmodule compiling on IRIX 6.5.10.Jeremy Hylton2003-07-171-2/+11
* Fix [ 766669 ] Consistent GPF on exitMark Hammond2003-07-091-1/+1
* SF patch #760257: add socket.timeout exceptionRaymond Hettinger2003-06-291-38/+113
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-101-8/+36
* Yet another addition to [731644]: only use the lock if thread-supportJust van Rossum2003-05-091-2/+2
* Addition to [731644]: also use the lock when using the getaddrinfoJust van Rossum2003-05-091-2/+2
* [ 731644] & [ 604210 ] Release the GIL around getaddrinfo(), yet protectJust van Rossum2003-05-091-10/+45
* Patch #724588: Check whether the address of hstrerror and inet_pton canMartin v. Löwis2003-05-031-0/+10
* Patch #708495: Port more stuff to OpenVMS.Martin v. Löwis2003-05-031-1/+9
* Patch 731209: Restore socketmodule's behaviour with dotted quad addressesAnthony Baxter2003-05-021-0/+16
* Patch #725942: Always rename emulation functions.Martin v. Löwis2003-05-011-2/+5
* Patch by Jp Calderone:Guido van Rossum2003-04-251-1/+114
* Implement IDNA (Internationalized Domain Names in Applications).Martin v. Löwis2003-04-181-5/+25
* Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.Martin v. Löwis2003-03-291-1/+1
* The connect timeout code wasn't working on Windows.Guido van Rossum2003-02-191-12/+13
* socket_inet_aton(): ip_addr was left undefined before use in theTim Peters2003-02-131-9/+9
* Ummm, try to get it right this timeNeal Norwitz2003-02-131-1/+1
* Use configure to check for inet_aton.Neal Norwitz2003-02-131-1/+1
* Addressing SF bug #643005, implement socket.inet_aton() usingGuido van Rossum2003-02-121-1/+17
* SF patch #678257 by Geoff Talvola.Guido van Rossum2003-01-311-1/+1
* Patch #661760: Cygwin auto-import module patchJason Tishler2003-01-061-6/+3
* OS/2 sockets do not support AF_UNIX, even though EMX headers define itAndrew MacIntyre2003-01-021-4/+4
* Patch #650422: Use Posix AF_ constants instead of PF_ ones.Martin v. Löwis2002-12-111-5/+7
* Don't include <ioctl.h> unless on __VMS.Martin v. Löwis2002-12-061-1/+3
* Patch #614055: Support OpenVMS.Martin v. Löwis2002-12-061-1/+106
* Use O_NONBLOCK rather than O_NDELAY, so we get POSIX non-blocking I/O.Neal Norwitz2002-11-021-4/+4
* Patch #608999: Fix portability problems with MIPSPro 7.xMartin v. Löwis2002-09-191-0/+8
* Update the module doc comment.Guido van Rossum2002-09-031-1/+3
* SF bug #592645 fix memory leak in socket.getaddrinfoNeal Norwitz2002-08-091-0/+2
* The other half of the patches added to SF patch 555085 by A IGuido van Rossum2002-08-081-0/+2
* Clean up some docstrings. Some docstrings didn't show their returnGuido van Rossum2002-08-081-10/+11
* internal_connect(): Windows. When sock_timeout > 0 and connect() yieldsTim Peters2002-08-061-6/+14
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Pass length of result structure into setipaddr. Fixes bug #565747.Martin v. Löwis2002-07-281-8/+12
* Put checks for error returns in the right place.Jeremy Hylton2002-07-251-2/+8
* Extended socket.htonl and ntohl to accept longs.Jeremy Hylton2002-07-251-15/+53
* Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." linkMark Hammond2002-07-231-1/+1
* Bail out early from internal_select() when socket file descriptorGuido van Rossum2002-07-191-0/+5
* A Python float is a C double; redeclare defaulttimeout as such; stopsTim Peters2002-07-181-1/+1
* Silence warning about getdefaulttimeout in PyMethodDef.Guido van Rossum2002-07-181-1/+1
* Add default timeout functionality. This adds setdefaulttimeout() andGuido van Rossum2002-07-181-1/+65
* staticforward bites the dust.Jeremy Hylton2002-07-171-1/+1
* Mac OS X Jaguar (developer preview) seems to have a working getaddrinfo().Jack Jansen2002-07-021-0/+5
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-82/+82