Everywhere I look, people say/write that at the end of TCP communication there should be four packets. First the client send Something's missing? Should there be 4 packets or everything is just fine? asked 30 Jun '15, 03:43 morfik |
One Answer:
The 4way closing: fin - ack - fin - ack can be shortened to: fin- fin, ack - ack You can find detailed Information here: RFC 793 hint: answered 30 Jun '15, 03:55 Christian_R edited 30 Jun '15, 05:25 |
Could you provide some link that can cast more light on this subject?
See TCP Connection Termination.
@Jaap, in the link you gave, there's a normal closing and the simultaneous one. There's no info concerning the missing
ACK
packet.At the RFC Figure 13 it is included. Figure 12 is telling the theoretical function and figure 13 tells you the practical one.
This sentence I had taken from here: https://en.wikipedia.org/wiki/Transmission_Control_Protocol
@Christian_R , now I get it!