This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xdegaye
Recipients vinay.sajip, vstinner, xdegaye
Date 2016-04-20.07:06:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1461136018.87.0.415916433082.issue26803@psf.upfronthosting.co.za>
In-reply-to
Content
A unix abstract socket address is defined here:
    http://man7.org/linux/man-pages/man7/unix.7.html
as:

"Traditionally, UNIX domain sockets can be either unnamed, or bound to
a filesystem pathname (marked as being of type socket).  Linux also
supports an abstract namespace which is independent of the
filesystem."

and:

"abstract: an abstract socket address is distinguished (from a
pathname socket) by the fact that sun_path[0] is a null byte ('\0').
..."

It is also documented in the Python socket module documentation at
    https://docs.python.org/3/library/socket.html
and tested in the TestLinuxAbstractNamespace test of
Lib/test/test_socket.py.
History
Date User Action Args
2016-04-20 07:06:58xdegayesetrecipients: + xdegaye, vinay.sajip, vstinner
2016-04-20 07:06:58xdegayesetmessageid: <1461136018.87.0.415916433082.issue26803@psf.upfronthosting.co.za>
2016-04-20 07:06:58xdegayelinkissue26803 messages
2016-04-20 07:06:58xdegayecreate