Hello, I can see that some ACK packet without PSH flag sends data as well. I have thought that ACK packet will always have len=0, but I see packets with ACK flag only and len=1380. asked 06 Jan '15, 08:07 Otas converted to question 06 Jan '15, 08:46 grahamb ♦ |
2 Answers:
Its called as piggybacking,Piggybacking is a bi-directional data transmission technique. It makes the most of the sent data frames from receiver to emitter, adding the confirmation that the data frame sent by the sender was received successfully (ACK acknowledge). This practically means, that instead of sending an acknowledgement in an individual frame it is piggy-backed on the data frame answered 06 Jan '15, 08:41 kishan pandey |
After the SYN packet, every single packet will have the ACK bit set, so data packets are also ACK packets. answered 06 Jan '15, 10:10 Jim Aragon |
Hello Kishan,
thank you for lightning response. Fully clarified.
BR
Otas