How do I force FIN packet in IHTTPAsyncHandler

  • Thread starter Thread starter Craig
  • Start date Start date
C

Craig

Hi,
Is there a way to force a FIN packet back to the client in the
EndProcessRequest method? If not, could someone please explain how/why FIN
packets are generated.
Would appreciate any help.
THanks you.
Regards,
CRaig
 
What are you trying to accomplish?

If you want abort the request you can call Abort method.

FIN packets are those packets that indicate the connection shutdown. Client
sends FIN packet if he wants to close connection to the server.

This packet type origins from TCP protocol, if you want to know more about
TCP packets flags google for TCP RFC
 
Back
Top