summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix non-blocking connect() for Windows. Refactored the codeGuido van Rossum2002-06-131-27/+40
* Major overhaul of timeout sockets:Guido van Rossum2002-06-131-219/+58
* work around name clash with OS/2 TCPIP routine sock_init()Andrew MacIntyre2002-06-131-2/+2
* Move the conex_finally label up, so that the errno value is alwaysGuido van Rossum2002-06-071-1/+1
* I decided to change the interaction between setblocking() andGuido van Rossum2002-06-071-5/+2
* Major cleanup. Renamed static methods to avoid Py prefix. Other miscGuido van Rossum2002-06-071-296/+290
* Whitespace normalization, folding long lines, uniform commentGuido van Rossum2002-06-071-224/+229
* Correct several blunders in the timeout code, mostly my own fault (forGuido van Rossum2002-06-071-14/+12
* SF patch 555085 (timeout socket implementation) by Michael Gilfix.Guido van Rossum2002-06-061-54/+420
* The insint() function is not used. Nuke it.Guido van Rossum2002-06-061-15/+0
* The tp_new implementation should initialize the errorhandler field,Guido van Rossum2002-06-061-1/+3
* Repair widespread misuse of _PyString_Resize. Since it's clear peopleTim Peters2002-04-271-2/+2
* PyObject_Del can now be used as a function designator.Neil Schemenauer2002-04-121-1/+1
* Got rid of ifdefs for long-obsolete GUSI versions.Jack Jansen2002-04-111-15/+0
* Use the PyModule_Add*() APIs instead of manipulating the module dictFred Drake2002-04-011-201/+217
* Remove last occurrance of PyArg_GetInt. It is deprecated,Neal Norwitz2002-03-251-1/+1
* Due to interaction between the MSL C library and the GUSI I/O library I can g...Jack Jansen2002-03-251-0/+5
* OS/2 EMX port changes (Modules part of patch #450267):Andrew MacIntyre2002-03-031-6/+11
* Patch #520062: Support IPv6 with VC.NET.Martin v. Löwis2002-03-011-0/+3