public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* tcp port reuse checking TCP_LISTEN state
@ 2004-11-23 10:20 Ilya Pashkovsky
  2004-11-25 16:05 ` Alan Cox
  0 siblings, 1 reply; 2+ messages in thread
From: Ilya Pashkovsky @ 2004-11-23 10:20 UTC (permalink / raw)
  To: linux-kernel

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 ?

--
 ilya

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2004-11-27  3:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-23 10:20 tcp port reuse checking TCP_LISTEN state Ilya Pashkovsky
2004-11-25 16:05 ` Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox