summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Convert the socket module to insist on bytes for input, and to return bytesGuido van Rossum2007-11-211-30/+25
* The patch from weck does a better job than my original idea. Thanks!Christian Heimes2007-11-201-4/+2
* This is roughly socket2.diff from issue 1378, with a few changes appliedGuido van Rossum2007-11-161-61/+71
* Merged revisions 58947-59004 via svnmerge fromGuido van Rossum2007-11-161-81/+5
* Fix for VS 2008Christian Heimes2007-11-151-0/+6
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-2/+2
* Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE.Sean Reifscheider2007-09-171-1/+1
* merge this from trunk:Gregory P. Smith2007-09-091-1/+2
* More changes needed to make things work once bytes and str are truly divorced.Guido van Rossum2007-08-271-1/+1
* Fix typo in commentKurt B. Kaiser2007-08-221-2/+2
* Remove support for BeOSSkip Montanaro2007-08-171-31/+2
* Remove RISCOS supportSkip Montanaro2007-08-161-89/+0
* Down with str8!Guido van Rossum2007-08-151-18/+19
* Fix two bugs in socket_getaddr():Guido van Rossum2007-08-091-4/+3
* Get rid of a bogus assert when recv_into() is called with a zero-lengthGuido van Rossum2007-08-031-1/+4
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-10/+9
* 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