You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apache-bugdb@apache.org by fi...@apache.org on 1998/12/12 03:46:23 UTC

Re: general/3401: no shutdown() of client socket in ap_bclose()

[In order for any reply to be added to the PR database, ]
[you need to include <ap...@Apache.Org> in the Cc line ]
[and leave the subject line UNCHANGED.  This is not done]
[automatically because of the potential for mail loops. ]
[If you do not include this Cc, your reply may be ig-   ]
[nored unless you are responding to an explicit request ]
[from a developer.                                      ]
[Reply only with text; DO NOT SEND ATTACHMENTS!         ]


Synopsis: no shutdown() of client socket in ap_bclose()

State-Changed-From-To: feedback-closed
State-Changed-By: fielding
State-Changed-When: Fri Dec 11 18:46:22 PST 1998
State-Changed-Why:

What you describe is normal behavior according to both the
TCP specifications and most implementations.  TIME_WAIT is
the state of a socket after it has been closed and the FIN
acknowledgement has been received from the client. Calling
shutdown before close will not have any effect, unless the
implementation of shutdown is itself broken and sends a
RST instead of a FIN to the client.