summaryrefslogtreecommitdiff
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #8498: In socket.accept(), allow to specify 0 as a backlog value inAntoine Pitrou2011-05-101-4/+7
* #10169: Fix argument parsing in socket.sendto() to avoid error masking.Ezio Melotti2011-05-071-5/+15
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-8/+8
* Merged revisions 85868 via svnmerge fromAntoine Pitrou2010-10-271-12/+28
* Merged revisions 85586-85587,85596-85598 via svnmerge fromGregory P. Smith2010-10-171-2/+25
* Merged revisions 85404 via svnmerge fromGregory P. Smith2010-10-131-1/+1
* Merged revisions 85032 via svnmerge fromAntoine Pitrou2010-09-271-23/+25
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-3117/+3117
* Remove an unneeded variable assignment.Brett Cannon2010-05-041-1/+0
* Issue #7834: Fix connect() of Bluetooth L2CAP sockets with recent versionsAntoine Pitrou2010-04-291-0/+1
* Issue #8235: _socket: Add the constant ``SO_SETFIB``. SO_SETFIB isLarry Hastings2010-04-021-0/+3
* Backported PyCapsule from 3.1, and converted most uses ofLarry Hastings2010-03-251-1/+1
* Issue #8104: socket.recv_into() and socket.recvfrom_into() now supportAntoine Pitrou2010-03-171-17/+29
* Issue #4772: Raise a ValueError when an unknown Bluetooth protocol isAntoine Pitrou2010-02-041-1/+5
* http://bugs.python.org/issue6971Kristján Valur Jónsson2009-09-251-15/+39
* #6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a System...Georg Brandl2009-09-191-5/+8
* Fix issue1628205: Socket file objects returned by socket.socket.makefile() nowGregory P. Smith2009-08-131-1/+14
* Apply patch for netbsd multiprocessing supportJesse Noller2009-03-311-1/+1
* Issue #1008086: Fixes socket.inet_aton() to always return 4 bytes evenGregory P. Smith2009-02-111-2/+8
* - Issue #5104: The socket module now raises OverflowError when 16-bit port andGregory P. Smith2009-01-311-3/+27
* Fix issue 4884, preventing a crash in the socket code when python is compiledJeffrey Yasskin2009-01-091-1/+5
* Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,Martin v. Löwis2008-08-121-10/+32
* Restore support for Microsoft VC6 compiler.Amaury Forgeot d'Arc2008-06-131-2/+2
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-30/+30
* Renamed PyString to PyBytesChristian Heimes2008-05-261-30/+30
* Repair compilation for Visual Studio 2005.Amaury Forgeot d'Arc2008-03-281-0/+4
* Remove all traces of HAVE_STRERROR.Brett Cannon2008-03-181-6/+1
* patch 1754489 by vlahan:Armin Rigo2008-01-231-2/+2
* Patch #1019808 from Federico Schwindt: Return correct socket error whenAndrew M. Kuchling2008-01-191-9/+16
* Make Modules/socketobject.c compile for Windows again.Thomas Heller2008-01-131-4/+7
* Removed unused variableChristian Heimes2008-01-111-1/+1
* Guard definition of TIPC_SUB_CANCEL with an #ifdef.Georg Brandl2008-01-111-1/+4
* Comment-out missing constant (from rev 59819)Raymond Hettinger2008-01-111-1/+1
* Issue #1646: Make socket support TIPC. The socket module now has supportChristian Heimes2008-01-071-1/+153
* Added interface to Windows' WSAIoctl and a simple example for a network sniffer.Christian Heimes2008-01-041-1/+42
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-8/+8
* Issue #1645 by Alberto Bertogli. Fix a comment.Guido van Rossum2007-12-181-6/+6
* Backport of the PCbuild9 directory from the py3k branch.Christian Heimes2007-11-221-0/+4
* A patch from issue 1378 by roudkerk:Guido van Rossum2007-11-161-81/+5
* Change socket.error to inherit from IOError rather than being a standGregory P. Smith2007-09-091-1/+2
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-10/+9
* Fix build on FreeBSD. Bluetooth HCI API in FreeBSD is quite differentHye-Shik Chang2007-06-051-2/+5
* Fix method names. Will backport.Neal Norwitz2007-03-311-3/+4
* Bug 1688393. Adds a control of negative values inFacundo Batista2007-03-281-2/+8
* Update 1432399 to removal of _BT_SOCKADDR_MEMB.Martin v. Löwis2007-02-141-2/+1
* Patch #1432399: Add HCI sockets.Martin v. Löwis2007-02-141-0/+34
* Patch #1657276: Make NETLINK_DNRTMSG conditional.Martin v. Löwis2007-02-131-0/+2
* Patch #1635058 by Mark Roberts: ensure that htonl and friends never accept orGuido van Rossum2007-01-141-4/+24
* Comment typoAndrew M. Kuchling2006-12-191-1/+1
* Patch #1544279: Improve thread-safety of the socket module by movingMartin v. Löwis2006-12-031-52/+45