Hello!
> The SYN/ACK handshake appears to go well, and telnet reports a connection
> (the daemon doesn't, no data has been sent). However, Linux keeps sending
> SYNs, which keep getting ACKed. I'm not sure if this is desired behavior. It
> appears to be a side effect of the TCP_DEFER_ACCEPT timeout implementation,
> which seems to hijack the SYNACK_RESEND timeout.
Until actively connecting client will send some data,
service will and must retransmit syn-ack. Otherwise you will lose connection.
DEFER_ACCEPT (like data_ready filter) applies only
to sessions, which expect some data from client as beginning
of transaction. F.e. HTTP.
> Also, this timeout is not quite the number of seconds specified to
> setsockopt, because of this.
It is rounded up to 3*2^N seconds.
Alexey
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/