summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-2/+5
* Simplify os_init() implementations by using PyErr_Format()Walter Dörwald2007-06-051-8/+2
* Remove unused variable.Walter Dörwald2007-06-051-1/+0
* Simplify socket_repr() by using PyUnicode_FromFormat()Walter Dörwald2007-06-051-3/+1
* Sockets facelift. APIs that could return binary data (e.g. aton() andGuido van Rossum2007-05-211-156/+52
* Make test_socket pass. There was an unchecked error when a UnicodeGuido van Rossum2007-05-181-1/+2
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-1/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-5/+12
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-0/+35
* Merged revisions 53434 via svnmerge fromGuido van Rossum2007-01-151-4/+14
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-13/+3
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-091-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-52/+45
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-11/+14
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-86/+138
* Merge the rest of the trunk.Thomas Wouters2006-06-081-36/+38
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-8/+6
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-138/+366
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-14/+62
* 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