<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Modules/socketmodule.h, branch fix-misc-acks</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/'/>
<entry>
<title>closes bpo-34555: Fix incorrectly nested test for HAVE_LINUX_VM_SOCKETS_H (GH-9016)</title>
<updated>2018-09-01T22:30:44+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2018-09-01T22:30:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=4c532da1209bd20ba07f18448134f32ace8c54f7'/>
<id>4c532da1209bd20ba07f18448134f32ace8c54f7</id>
<content type='text'>
(cherry picked from commit 2d7102e726e973ab2d307aa9748c7ec433677877)

Co-authored-by: Thomas Herzog &lt;thomas@mcduke.net&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit 2d7102e726e973ab2d307aa9748c7ec433677877)

Co-authored-by: Thomas Herzog &lt;thomas@mcduke.net&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-34217: Use lowercase header for Windows (GH-8453)</title>
<updated>2018-07-30T06:15:51+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2018-07-30T06:15:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=6c89a9a4c7d1804e16038f9ee3a0b2efaa4bdee6'/>
<id>6c89a9a4c7d1804e16038f9ee3a0b2efaa4bdee6</id>
<content type='text'>
(cherry picked from commit 6cf8255912c36fec6f87f62513034d0818f61390)

Co-authored-by: erikjanss &lt;erik.janssens@conceptive.be&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit 6cf8255912c36fec6f87f62513034d0818f61390)

Co-authored-by: erikjanss &lt;erik.janssens@conceptive.be&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-31927: Fix bugs in socketmodule.c on NetBSD and other issues. (#4235)</title>
<updated>2017-11-09T16:00:38+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-11-09T16:00:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d3187158c09cf899e9849f335bdff10594209167'/>
<id>d3187158c09cf899e9849f335bdff10594209167</id>
<content type='text'>
* Fix compilation of the socket module on NetBSD 8.
* Fix the assertion failure or reading arbitrary data when parse
  a AF_BLUETOOTH address on NetBSD and DragonFly BSD.
* Fix other potential errors and make the code more reliable.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix compilation of the socket module on NetBSD 8.
* Fix the assertion failure or reading arbitrary data when parse
  a AF_BLUETOOTH address on NetBSD and DragonFly BSD.
* Fix other potential errors and make the code more reliable.
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-31462: Remove trailing whitespaces. (#3564)</title>
<updated>2017-09-14T06:38:36+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-09-14T06:38:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=13ad3b7a82bf56d803fbe48ee5df6c4b08986c78'/>
<id>13ad3b7a82bf56d803fbe48ee5df6c4b08986c78</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-27584: New addition of vSockets to the python socket module (#2489)</title>
<updated>2017-09-06T22:18:10+00:00</updated>
<author>
<name>caavery</name>
<email>cavery@redhat.com</email>
</author>
<published>2017-09-06T22:18:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=effc12f8e9e20d0951d2ba5883587666bd8218e3'/>
<id>effc12f8e9e20d0951d2ba5883587666bd8218e3</id>
<content type='text'>
* bpo-27584: New addition of vSockets to the python socket module

Support for AF_VSOCK on Linux only

* bpo-27584: Fixes for V2

Fixed syntax and naming problems.
Fixed #ifdef AF_VSOCK checking
Restored original aclocal.m4

* bpo-27584: Fixes for V3

Added checking for fcntl and thread modules.

* bpo-27584: Fixes for V4

Fixed white space error

* bpo-27584: Fixes for V5

Added back comma in (CID, port).

* bpo-27584: Fixes for V6

Added news file.
socket.rst now reflects first Linux introduction of AF_VSOCK.
Fixed get_cid in test_socket.py.
Replaced PyLong_FromLong with PyLong_FromUnsignedLong in socketmodule.c
Got rid of extra AF_VSOCK #define.
Added sockaddr_vm to sock_addr.

* bpo-27584: Fixes for V7

Minor cleanup.

* bpo-27584: Fixes for V8

Put back #undef AF_VSOCK as it is  necessary when vm_sockets.h is not installed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* bpo-27584: New addition of vSockets to the python socket module

Support for AF_VSOCK on Linux only

* bpo-27584: Fixes for V2

Fixed syntax and naming problems.
Fixed #ifdef AF_VSOCK checking
Restored original aclocal.m4

* bpo-27584: Fixes for V3

Added checking for fcntl and thread modules.

* bpo-27584: Fixes for V4

Fixed white space error

* bpo-27584: Fixes for V5

Added back comma in (CID, port).

* bpo-27584: Fixes for V6

Added news file.
socket.rst now reflects first Linux introduction of AF_VSOCK.
Fixed get_cid in test_socket.py.
Replaced PyLong_FromLong with PyLong_FromUnsignedLong in socketmodule.c
Got rid of extra AF_VSOCK #define.
Added sockaddr_vm to sock_addr.

* bpo-27584: Fixes for V7

Minor cleanup.

* bpo-27584: Fixes for V8

Put back #undef AF_VSOCK as it is  necessary when vm_sockets.h is not installed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add sockaddr_alg to sock_addr_t (#234)</title>
<updated>2017-02-22T11:12:00+00:00</updated>
<author>
<name>Christian Heimes</name>
<email>christian@python.org</email>
</author>
<published>2017-02-22T11:12:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d37c068e695f8ec72b5c1b5a5a5ece2337fda768'/>
<id>d37c068e695f8ec72b5c1b5a5a5ece2337fda768</id>
<content type='text'>
sock_addr_t is used to define the minimum size of any socket address on
the stack. Let's make sure that an AF_ALG address always fits. Coverity
complains because in theory, AF_ALG might be larger than any of the other
structs. In practice it already fits.

Closes Coverity CID 1398948, 1398949, 1398950

Signed-off-by: Christian Heimes &lt;christian@python.org&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
sock_addr_t is used to define the minimum size of any socket address on
the stack. Let's make sure that an AF_ALG address always fits. Coverity
complains because in theory, AF_ALG might be larger than any of the other
structs. In practice it already fits.

Closes Coverity CID 1398948, 1398949, 1398950

Signed-off-by: Christian Heimes &lt;christian@python.org&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #22117: The socket module uses _PyTime_t timestamp for timeouts</title>
<updated>2015-03-28T00:18:54+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-03-28T00:18:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=71694d5c8c1846c6ac755bef69d7817f95359ecd'/>
<id>71694d5c8c1846c6ac755bef69d7817f95359ecd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #23451: Update pyconfig.h for Windows to require Vista headers and remove unnecessary version checks.</title>
<updated>2015-03-02T16:01:10+00:00</updated>
<author>
<name>Steve Dower</name>
<email>steve.dower@microsoft.com</email>
</author>
<published>2015-03-02T16:01:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=3e96f324dcdbeb78fcd8fa4ffe2cd0c67f3828b2'/>
<id>3e96f324dcdbeb78fcd8fa4ffe2cd0c67f3828b2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #15359: Add CAN_BCM protocol support to the socket module. Patch by Brian</title>
<updated>2013-02-05T18:42:01+00:00</updated>
<author>
<name>Charles-François Natali</name>
<email>cf.natali@gmail.com</email>
</author>
<published>2013-02-05T18:42:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=773e42dff813bb18cb25016ae1fe1ed0886fd484'/>
<id>773e42dff813bb18cb25016ae1fe1ed0886fd484</id>
<content type='text'>
Thorne.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Thorne.
</pre>
</div>
</content>
</entry>
<entry>
<title>#16135: Removal of OS/2 support (Modules/*)</title>
<updated>2012-10-05T00:11:36+00:00</updated>
<author>
<name>Jesus Cea</name>
<email>jcea@jcea.es</email>
</author>
<published>2012-10-05T00:11:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=14c81aba509904959a86f14ccd180f714e6b753d'/>
<id>14c81aba509904959a86f14ccd180f714e6b753d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
