summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Band-aid type fix forMichael W. Hudson2004-05-261-0/+19
* Fixes for AF_UNIX support on OS/2:Andrew MacIntyre2004-04-111-0/+4
* OS/2's TCP/IP stack supports AF_UNIX sockets, with the limitation thatAndrew MacIntyre2004-04-041-4/+4
* Make socket.sslerror a subclass of socket.error .Brett Cannon2004-03-231-0/+2
* Make socketmodule compile again on a modern Linux (that supports Bluetooth).Anthony Baxter2004-02-161-1/+1
* remove support for missing ANSI C header files (limits.h, stddef.h, etc).Skip Montanaro2004-02-101-3/+1
* Add FreeBSD support for bluetooth sockets.Hye-Shik Chang2004-02-021-14/+38
* Patch #874083: Bluetooth support for socket module.Martin v. Löwis2004-01-311-0/+101
* Add IPV6_ socket options from RFCs 3493 and 3542. Fixes #867012.Martin v. Löwis2003-12-301-0/+71
* Fix erroneus argument parsing of socket.htons() on 64bit big endianHye-Shik Chang2003-12-171-1/+1
* Patch #849595: Add socket.shutdown() constants.Martin v. Löwis2003-11-271-2/+25
* Getting rid of code dependent on GUSI or the MetroWerks compiler.Jack Jansen2003-11-191-5/+0
* 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