Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove useless test (flowinfo is unsigned). | Charles-François Natali | 2012-06-23 | 1 | -2/+2 |
|\ | |||||
| * | Remove useless test (flowinfo is unsigned). | Charles-François Natali | 2012-06-23 | 1 | -2/+2 |
| | | |||||
* | | Issue #14310: inter-process socket duplication for windows | Kristján Valur Jónsson | 2012-04-07 | 1 | -7/+66 |
| | | |||||
* | | Issue #14300: Under Windows, sockets created using socket.dup() now allow ↵ | Antoine Pitrou | 2012-03-31 | 1 | -1/+1 |
| | | | | | | | | | | | | overlapped I/O. Patch by sbt. | ||||
* | | Fix warning when compiling socketmodule.c with VS2010 | Kristján Valur Jónsson | 2012-03-31 | 1 | -0/+1 |
| | | | | | | | | VS2010 defineds the old errno constants in addition to the WSA* ones. | ||||
* | | Issue #10951: Fix warnings in the socket module. | Ross Lagerwall | 2012-03-06 | 1 | -4/+4 |
| | | |||||
* | | Issue #13777: Add PF_SYSTEM sockets on OS X. | Martin v. Löwis | 2012-02-03 | 1 | -0/+107 |
| | | | | | | | | Patch by Michael Goderbauer. | ||||
* | | Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by | Charles-François Natali | 2012-01-02 | 1 | -8/+21 |
|\ \ | |/ | | | | | Vilmos Nebehaj. | ||||
| * | Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by | Charles-François Natali | 2012-01-02 | 1 | -8/+21 |
| | | | | | | | | Vilmos Nebehaj. | ||||
* | | Issue #8623: Fix some strict-aliasing warnings. Patch by David Watson. | Charles-François Natali | 2011-12-23 | 1 | -16/+9 |
| | | |||||
* | | Issue #12809: Expose IP_TRANSPARENT in the socket module. Patch by Michael | Charles-François Natali | 2011-12-17 | 1 | -0/+3 |
| | | | | | | | | Farrell. | ||||
* | | Issue #13560: os.strerror() now uses the current locale encoding instead of ↵ | Victor Stinner | 2011-12-17 | 1 | -3/+2 |
| | | | | | | | | UTF-8 | ||||
* | | Issue #8373: The filesystem path of AF_UNIX sockets now uses the filesystem | Antoine Pitrou | 2011-12-16 | 1 | -6/+19 |
| | | | | | | | | | | encoding and the surrogateescape error handler, rather than UTF-8. Patch by David Watson. | ||||
* | | Use the new Unicode API | Victor Stinner | 2011-11-22 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | * Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0) * Replce PyUnicode_FromUnicode(str, len) by PyUnicode_FromWideChar(str, len) * Replace Py_UNICODE by wchar_t * posix_putenv() uses PyUnicode_FromFormat() to create the string, instead of PyUnicode_FromUnicode() + _snwprintf() | ||||
* | | socket_gethostname() uses a wchar_t* with PyMem_Malloc() to avoid the | Victor Stinner | 2011-11-17 | 1 | -16/+26 |
| | | | | | | | | old Unicode API. | ||||
* | | Issue #7777: socket: Add Reliable Datagram Sockets (PF_RDS) support. | Charles-François Natali | 2011-11-10 | 1 | -0/+77 |
| | | |||||
* | | Issue #12619: Expose socket.SO_BINDTODEVICE constant | Victor Stinner | 2011-10-25 | 1 | -0/+3 |
| | | |||||
* | | Rename _Py_identifier to _Py_IDENTIFIER. | Martin v. Löwis | 2011-10-14 | 1 | -1/+1 |
| | | |||||
* | | PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. | Antoine Pitrou | 2011-10-12 | 1 | -60/+56 |
| | | |||||
* | | Add API for static strings, primarily good for identifiers. | Martin v. Löwis | 2011-10-09 | 1 | -1/+3 |
| | | | | | | | | Thanks to Konrad Schöbel and Jasper Schulz for helping with the mass-editing. | ||||
* | | Issue #10141: fix socketmodule compilation on Linux systems with <linux/can.h> | Charles-François Natali | 2011-10-07 | 1 | -3/+3 |
| | | | | | | | | but without AF_CAN definition. | ||||
* | | Issue #10141: socket: add SocketCAN (PF_CAN) support. Initial patch by Matthias | Charles-François Natali | 2011-10-06 | 1 | -0/+105 |
| | | | | | | | | Fuchs, updated by Tiago Gonçalves. | ||||
* | | Use the new Py_ARRAY_LENGTH macro | Victor Stinner | 2011-09-28 | 1 | -2/+2 |
| | | |||||
* | | Issue #12837: POSIX.1-2008 allows socklen_t to be a signed integer: re-enable | Charles-François Natali | 2011-08-28 | 1 | -1/+2 |
| | | | | | | | | | | the check against negative values, and add a note on this surprising test. Patch by David Watson. | ||||
* | | Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is | Charles-François Natali | 2011-08-28 | 1 | -8/+4 |
|\ \ | |/ | | | | | greater than FD_SETSIZE. | ||||
| * | Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is | Charles-François Natali | 2011-08-28 | 1 | -8/+4 |
| | | | | | | | | greater than FD_SETSIZE. | ||||
* | | sock_sendmsg/sock_recvmsg: Use {0} to 0-initialize aggregate types with | Charles-François Natali | 2011-08-24 | 1 | -7/+2 |
| | | | | | | | | automatic storage class. | ||||
* | | Issue12810: Remove check for negative unsigned value in socketmodule.c. Patch | Charles-François Natali | 2011-08-24 | 1 | -1/+1 |
| | | | | | | | | by Joel Stanley. | ||||
* | | Close #12826: fix socketmodule.c for OpenBSD, include sys/uio.h | Victor Stinner | 2011-08-23 | 1 | -0/+4 |
| | | | | | | | | Patch written by Remi Pointel. | ||||
* | | Attempt to address Windows buildbot failures | Nick Coghlan | 2011-08-22 | 1 | -1/+1 |
| | | |||||
* | | Add support for the send/recvmsg API to the socket module. Patch by David ↵ | Nick Coghlan | 2011-08-22 | 1 | -0/+809 |
| | | | | | | | | Watson and Heiko Wundram. (Closes #6560) | ||||
* | | #12725: merge with 3.2. | Ezio Melotti | 2011-08-14 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | #12725: fix working. Patch by Ben Hayden. | Ezio Melotti | 2011-08-14 | 1 | -3/+3 |
| | | |||||
* | | merge heads. | Gregory P. Smith | 2011-06-05 | 1 | -4/+5 |
|\ \ | |||||
| * | | socket.sendto(): exit directly after setting the error | Victor Stinner | 2011-05-26 | 1 | -4/+5 |
| | | | | | | | | | | | | Dummy change to avoid a false positive with the Clang Static Analyzer. | ||||
* | | | Further documentation updates to be consistent with doc standards and comments | Gregory P. Smith | 2011-05-23 | 1 | -2/+2 |
|/ / | | | | | | | Ezio Melotti pointed out. | ||||
* | | Issue #1746656: make if_nameindex(), if_indextoname() and if_nametoindex() | Charles-François Natali | 2011-05-20 | 1 | -31/+30 |
| | | | | | | | | accept and return str instead of bytes arrays. Add some more tests. | ||||
* | | issue #1746656: Fix for OS X. configure and #include changes so that the socket | Gregory P. Smith | 2011-05-15 | 1 | -0/+8 |
| | | | | | | | | module compiles again on OS X with its more annoying #include requirements. | ||||
* | | Issue #1746656: Add if_nameindex, if_nametoindex, if_indextoname | Gregory P. Smith | 2011-05-15 | 1 | -0/+110 |
| | | | | | | | | methods to the socket module. | ||||
* | | Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in | Antoine Pitrou | 2011-05-10 | 1 | -4/+7 |
|\ \ | |/ | | | | | order to accept exactly one connection. Patch by Daniel Evers. | ||||
| * | Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in | Antoine Pitrou | 2011-05-10 | 1 | -4/+7 |
| | | | | | | | | order to accept exactly one connection. Patch by Daniel Evers. | ||||
* | | Issue #5421: merge fix | Antoine Pitrou | 2011-03-17 | 1 | -6/+17 |
|\ \ | |/ | |||||
| * | Issue #5421: merge fix | Antoine Pitrou | 2011-03-17 | 1 | -6/+17 |
| |\ | |||||
| | * | Issue #5421: Fix misleading error message when one of socket.sendto()'s | Antoine Pitrou | 2011-03-17 | 1 | -6/+17 |
| | | | | | | | | | | | | arguments has the wrong type. Patch by Nikita Vetoshkin. | ||||
* | | | #11565: Merge with 3.2. | Ezio Melotti | 2011-03-16 | 1 | -6/+6 |
|\ \ \ | |/ / | |||||
| * | | #11565: Merge with 3.1. | Ezio Melotti | 2011-03-16 | 1 | -6/+6 |
| |\ \ | | |/ | |||||
| | * | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 1 | -6/+6 |
| | | | |||||
| | * | Merged revisions 85868 via svnmerge from | Antoine Pitrou | 2010-10-27 | 1 | -12/+28 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85868 | antoine.pitrou | 2010-10-27 22:13:57 +0200 (mer., 27 oct. 2010) | 3 lines Issue #8852: Allow the socket module to build on OpenSolaris. ........ | ||||
| | * | Merged revisions 85586-85587,85596-85598 via svnmerge from | Gregory P. Smith | 2010-10-17 | 1 | -2/+25 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85586 | gregory.p.smith | 2010-10-16 17:17:24 -0700 (Sat, 16 Oct 2010) | 2 lines fix for netbsd. ........ r85587 | gregory.p.smith | 2010-10-16 17:43:10 -0700 (Sat, 16 Oct 2010) | 3 lines applying netbsd-wizs-mod.patch from issue5510 - fixes for netbsd (and dragonflybsd?) ........ r85596 | gregory.p.smith | 2010-10-16 19:14:36 -0700 (Sat, 16 Oct 2010) | 6 lines Fix multiprocessing Semaphore's on netbsd5. SEM_VALUE_MAX is defined as (~0U) on NetBSD which was causing it to appear as -1 when used as a signed int for _multprocessing.SemLock.SEM_VALUE_MAX. This works around the problem by substituting INT_MAX on systems where it appears negative when used as an int. ........ r85597 | gregory.p.smith | 2010-10-16 19:57:19 -0700 (Sat, 16 Oct 2010) | 2 lines skip test_itimer_virtual on NetBSD to prevent the test suite from hanging. ........ r85598 | gregory.p.smith | 2010-10-16 20:09:12 -0700 (Sat, 16 Oct 2010) | 2 lines Avoid hanging the test on netbsd5. ........ | ||||
| | * | Merged revisions 85404 via svnmerge from | Gregory P. Smith | 2010-10-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85404 | gregory.p.smith | 2010-10-12 20:39:47 -0700 (Tue, 12 Oct 2010) | 2 lines fix compliation on NetBSD ........ |