Re: [RFC PATCH 0/5] net: socket bind to file descriptor introduced [message #47653 is a reply to message #47535] |
Wed, 15 August 2012 16:52  |
Ben Pfaff
Messages: 1 Registered: August 2012
|
Junior Member |
|
|
Stanislav Kinsbursky <skinsbursky@parallels.com> writes:
> This system call is especially required for UNIX sockets, which has name
> lenght limitation.
The worst of the name length limitations can be worked around by
opening the directory where the socket is to go as a file
descriptor, then using /proc/self/fd/<fd>/<basename> as the name
of the socket. This technique also works with "connect" and in
other contexts where a struct sockaddr is needed. At first
glance, it looks like your patches only help with "bind".
|
|
|