summaryrefslogtreecommitdiff
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-1/+1
* PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.Antoine Pitrou2011-10-121-60/+56
* Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-1/+3
* Issue #10141: fix socketmodule compilation on Linux systems with <linux/can.h>Charles-François Natali2011-10-071-3/+3
* Issue #10141: socket: add SocketCAN (PF_CAN) support. Initial patch by MatthiasCharles-François Natali2011-10-061-0/+105
* Use the new Py_ARRAY_LENGTH macroVictor Stinner2011-09-291-2/+2
* Issue #12837: POSIX.1-2008 allows socklen_t to be a signed integer: re-enableCharles-François Natali2011-08-281-1/+2
* Issue #12287: Fix a stack corruption in ossaudiodev module when the FD isCharles-François Natali2011-08-281-8/+4
|\
| * Issue #12287: Fix a stack corruption in ossaudiodev module when the FD isCharles-François Natali2011-08-281-8/+4
* | sock_sendmsg/sock_recvmsg: Use {0} to 0-initialize aggregate types withCharles-François Natali2011-08-241-7/+2
* | Issue12810: Remove check for negative unsigned value in socketmodule.c. PatchCharles-François Natali2011-08-241-1/+1
* | Close #12826: fix socketmodule.c for OpenBSD, include sys/uio.hVictor Stinner2011-08-231-0/+4
* | Attempt to address Windows buildbot failuresNick Coghlan2011-08-221-1/+1
* | Add support for the send/recvmsg API to the socket module. Patch by David Wat...Nick Coghlan2011-08-221-0/+809
* | #12725: merge with 3.2.Ezio Melotti2011-08-141-5/+158
|\ \ | |/ |/|
| * merge heads.Gregory P. Smith2011-06-041-2/+2
| |\
| | * Further documentation updates to be consistent with doc standards and commentsGregory P. Smith2011-05-221-2/+2
| * | socket.sendto(): exit directly after setting the errorVictor Stinner2011-05-261-4/+5
| |/
| * Issue #1746656: make if_nameindex(), if_indextoname() and if_nametoindex()Charles-François Natali2011-05-201-31/+30
| * issue #1746656: Fix for OS X. configure and #include changes so that the socketGregory P. Smith2011-05-151-0/+8
| * Issue #1746656: Add if_nameindex, if_nametoindex, if_indextonameGregory P. Smith2011-05-151-0/+110
| * Issue #8498: In socket.accept(), allow to specify 0 as a backlog value inAntoine Pitrou2011-05-101-4/+7
| |\
| * \ Issue #5421: merge fixAntoine Pitrou2011-03-171-6/+17
| |\ \
| * \ \ #11565: Merge with 3.2.Ezio Melotti2011-03-161-2/+37
| |\ \ \
| | * | | Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2Jesus Cea2011-03-141-1/+1
| | * | | Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall.Antoine Pitrou2011-02-281-0/+35
| | * | | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-1/+1
* | | | | #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
| |_|/ |/| |
* | | Issue #5421: merge fixAntoine Pitrou2011-03-171-6/+17
|\ \ \ | |/ / |/| |
| * | Issue #5421: Fix misleading error message when one of socket.sendto()'sAntoine Pitrou2011-03-171-6/+17
* | | #11565: Merge with 3.1.Ezio Melotti2011-03-161-54/+245
|\ \ \ | |/ / |/| / | |/
| * Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for ...Alexander Belopolsky2010-12-081-3/+5
| * Issue #10272: The ssl module now raises socket.timeout instead of a genericAntoine Pitrou2010-12-031-0/+2
| * Fixed socket_gethostname() on windows.Hirokazu Yamamoto2010-11-051-6/+9
| * plug refleakBenjamin Peterson2010-10-291-0/+1
| * Issue #9377: Use Unicode API for gethostname on Windows.Martin v. Löwis2010-10-291-0/+22
| * Issue #10093: ResourceWarnings are now issued when files and sockets areAntoine Pitrou2010-10-291-1/+13
| * Issue #8852: Allow the socket module to build on OpenSolaris.Antoine Pitrou2010-10-271-12/+28
| * For now, remove accept4() code (issue #10115)Antoine Pitrou2010-10-221-9/+0
| * applying netbsd-wizs-mod.patch from issue5510 -Gregory P. Smith2010-10-171-2/+25
| * Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module,Antoine Pitrou2010-10-141-6/+33
| * fix compliation on NetBSDGregory P. Smith2010-10-131-1/+1
| * Fix compilation under WindowsAntoine Pitrou2010-09-281-0/+3
| * Issue #9090: When a socket with a timeout fails with EWOULDBLOCK or EAGAIN,Antoine Pitrou2010-09-281-15/+88
| * Issue #9950: Fix socket.sendall() crash or misbehaviour when a signal isAntoine Pitrou2010-09-271-23/+25
| * Fix Issue9753: socket.dup() does not always work right on WindowsDaniel Stutzbach2010-09-031-8/+5
| * Issue #1027206: getnameinfo is now restricted to numeric addresses as input.Martin v. Löwis2010-08-251-0/+1
| * Issue #1027206: Support IDNA in gethostbyname, gethostbyname_ex andMartin v. Löwis2010-08-221-10/+18
| * Clean some 64-bit issues. Also, always spell "ssize_t" "Py_ssize_t".Antoine Pitrou2010-08-171-30/+33