summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Allow socketmodule to compile on NetBSD -current, whose bluetooth APIMatt Fleming2006-07-281-0/+8
* #1494314: Fix a regression with high-numbered sockets in 2.4.3. ThisAnthony Baxter2006-07-111-16/+44
* Patch #1516912: improve Modules support for OpenVMS.Neal Norwitz2006-07-101-49/+43
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-101-2/+6
* Fix a refleak in recvfrom_intoNeal Norwitz2006-06-081-1/+1
* Remove unused variable (and stop compiler warning)Neal Norwitz2006-06-061-1/+0
* Fixes in struct and socket from merge reviews.Martin Blais2006-06-041-35/+38
* Simplify further by using AddStringConstantNeal Norwitz2006-05-301-4/+2
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-5/+3
* Fix refleak in socketmodule. Replace bogus Py_BuildValue calls.Georg Brandl2006-05-291-3/+5
* Support for buffer protocol for socket and struct.Martin Blais2006-05-261-136/+316
* Fix SF bug #1476111: SystemError in socket sendto. The AF_INET6 andThomas Wouters2006-04-251-0/+16
* Patch 1471925 - Weak linking support for OSXRonald Oussoren2006-04-231-2/+34
* SF Patch #1062014: AF_UNIX sockets under Linux have a specialArmin Rigo2006-04-191-6/+31
* Patch #1191065: Fix preprocessor problems on systems where recvfromMartin v. Löwis2006-04-151-6/+8
* Off-by-one buffer overflow error.Armin Rigo2006-04-121-1/+1
* Patch #1462080: Conditionalize some NETLINK defines.Martin v. Löwis2006-04-061-0/+11
* Bug #1460564: document that socket.fromfd() duplicates the givenGeorg Brandl2006-04-011-2/+3
* RFE #567972: Socket objects' family, type and proto properties areGeorg Brandl2006-03-171-1/+10
* More unconsting.Martin v. Löwis2006-02-271-1/+1
* NETLINK_TCPDIAG and NETLINK_NFLOG aren't defined on older LinuxGuido van Rossum2006-02-211-0/+4
* Bug #854823: socketmodule now builds on Sun platforms even whenGeorg Brandl2006-02-201-2/+2
* Introduce Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE.Martin v. Löwis2006-02-111-0/+7
* Bug #876637, prevent stack corruption when socket descriptorNeal Norwitz2006-02-071-2/+31
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Get socketmodule to build after adding netlink support.Neal Norwitz2006-01-161-0/+2
* Change build format of netlink addresses.Martin v. Löwis2006-01-151-1/+1
* Patch #1103116: AF_NETLINK sockets basic support.Martin v. Löwis2006-01-141-1/+53
* Fix SF bug #1072182, problems with signed characters.Neal Norwitz2005-12-191-1/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-1/+1
* Patch #1288833: Removed thread lock from socket.getaddrinfo onHye-Shik Chang2005-09-241-1/+6
* - Changes donated by Elemental Security to make it work on AIX 5.3Guido van Rossum2005-09-141-23/+19
* patch [ 756021 ] Allow socket.inet_aton("255.255.255.255") on WindowsGeorg Brandl2005-08-261-7/+12
* Fix apparently trivial buffer overflow (SF bug 1060396).Jeremy Hylton2004-11-071-1/+1
* Just remove the #include of signal.h. That it was C++-commented outMichael W. Hudson2004-10-141-1/+0
* Use C89 style comment for old compilersNeal Norwitz2004-10-141-1/+1
* Patch #975056 - fixes for restartable signals on *BSD. In addition,Anthony Baxter2004-10-131-1/+1
* Silence a compiler warning by supplying the correct argument type toRaymond Hettinger2004-09-281-2/+2
* Patch for compilation on IRIX from rwgk on http://python.org/sf/728330Trent Mick2004-09-131-0/+10
* Apply patch from http://python.org/sf/728330 to fix socket module compilation...Trent Mick2004-09-071-1/+13
* Patch #1015012. Improve markup and punctuation in libsocket.texDave Cole2004-08-261-2/+2
* Back out 1.289, which breaks platforms needing addrinfo.h, andMartin v. Löwis2004-08-251-31/+0
* Updated the socketpair() docstring and documentation to explain that theDave Cole2004-08-231-2/+4
* Removed unnecessary calls to signal() to ignore SIGPIPE. SIGPIPE is ignoredDave Cole2004-08-231-13/+0
* Bug #1001857: socketmodule does not build under cygwinJason Tishler2004-08-091-0/+4
* Patch #1003700: Add socketpair function to socket module.Dave Cole2004-08-091-0/+62
* Restore compilation on MSVC++ 6.0Raymond Hettinger2004-08-031-0/+4
* Fix [ 1001018 ]: Windows: setdefaulttimeout causes unnecessary timeouts onMark Hammond2004-08-031-3/+24
* Patch #984654: Add more address family constants.Martin v. Löwis2004-07-191-0/+60
* [Patch #947352 from Jason Andryuk] Add support for AF_PACKET hardware addressesAndrew M. Kuchling2004-07-101-6/+15