summaryrefslogtreecommitdiff
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Fix a possible reference leak in _socket.getaddrinfo(). (GH-10543)Miss Islington (bot)2018-11-151-2/+4
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-311-1/+1
* [2.7] bpo-31927: Fix reading arbitrary data when parse a AF_BLUETOOTH address...Serhiy Storchaka2017-11-091-42/+42
* Issue #28000: Fix gethostbyname_r() usage on AIX with _LINUX_SOURCE_COMPATMartin Panter2016-11-141-1/+3
* Silenced compiler warnings.Serhiy Storchaka2016-10-081-4/+4
* Issue #28139: Fix messed up indentationMartin Panter2016-09-171-5/+6
* initialize variable to appease gccBenjamin Peterson2016-07-071-1/+1
* Issue #26406: Avoid unnecessary serialization of getaddrinfo(3) calls onNed Deily2016-02-231-5/+11
* Issue #25924: Avoid unnecessary serialization of getaddrinfo(3) calls on OS XNed Deily2016-02-151-2/+18
* Issue #24684: socket.socket.getaddrinfo() now callsVictor Stinner2015-09-111-1/+1
* Issue #23834: Fix socket.sendto(), use the C long type to store the result ofVictor Stinner2015-04-021-1/+2
* remove assignment in conditionalBenjamin Peterson2015-04-011-1/+2
* make _socket.socket weakrefable (closes #22569)Benjamin Peterson2014-10-061-1/+4
* Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowErrorVictor Stinner2014-07-261-2/+9
* socketmodule.c: backport INVALID_SOCKET from Python 3.5 to simplify the codeVictor Stinner2014-07-261-14/+5
* remove overly strict assertion (closes #20251)Benjamin Peterson2014-01-141-1/+0
* complain when nbytes > buflen to fix possible buffer overflow (closes #20246)Benjamin Peterson2014-01-131-0/+4
* Ensure that the fix for #17269 also works on OSX 10.4Ronald Oussoren2013-06-101-1/+1
* Issue #17269: Workaround for a platform bug in getaddrinfo on OSXRonald Oussoren2013-05-241-0/+9
* issue #9090 : Take the same approach for socketmodule as daytimemoduleKristján Valur Jónsson2013-03-191-23/+4
* issue #9090 : Limit the fix to windows since getting a portable simpleKristján Valur Jónsson2013-03-191-1/+20
* Issue #9090 : Error code 10035 calling socket.recv() on a socket with a timeoutKristján Valur Jónsson2013-03-191-15/+89
* Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-3/+3
* #8853: Allow port to be of type long for socket.getaddrinfo()Petri Lehtinen2012-12-201-3/+7
* Modules/socketmodule.c: netdb_lock: define static.Matthias Klose2012-08-141-1/+1
* Remove useless test (flowinfo is unsigned).Charles-François Natali2012-06-231-2/+2
* Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch byCharles-François Natali2012-01-021-8/+21
* Issue #12287: Fix a stack corruption in ossaudiodev module when the FD isCharles-François Natali2011-08-281-8/+4
* #12725: fix working. Patch by Ben Hayden.Ezio Melotti2011-08-141-3/+3
* 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