* tcp port reuse checking TCP_LISTEN state
[not found] <fcb9aa29041123022027c1ec06@mail.gmail.com>
@ 2004-11-27 14:13 ` Ilya Pashkovsky
0 siblings, 0 replies; only message in thread
From: Ilya Pashkovsky @ 2004-11-27 14:13 UTC (permalink / raw)
To: netdev
Hello, fellow developers.
While BSD (and thus, MacOS X) has the SO_REUSEPORT socket option, and
Windows has SO_REUSEADDR socket option that integrates the port reuse
functionality, linux tends to differ.
Though the socket matching should be made using the tuple consisting
of both source address+port and destination address+port, there's a
check in the tcp implementation of linux kernel for TCP_LISTEN state,
which inhibits port reuse. While its logical to allow only one
listener on a socket, this can be accomplished by checking for the
socket state during the call to listen(). The current behavior breaks
applications that want to both listen on an port and initiate outgoing
connections from it (same port).
Can anyone please explain the logic behind the TCP_LISTEN check being
done on bind() calls and not listen() calls ?
p.s. Please cc your reply directly to ilya.pashkovsky@gmail.com
--
ilya
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-11-27 14:13 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <fcb9aa29041123022027c1ec06@mail.gmail.com>
2004-11-27 14:13 ` tcp port reuse checking TCP_LISTEN state Ilya Pashkovsky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).