Results 1 to 1 of 1
TCP RFC states that sequence numbers are given to each TCP octet(or byte)
Suppose i use a C function like:
send(sock, msg, len, 0);
where msg is a multi-octet array.
...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 12-08-2006 #1Just Joined!
- Join Date
- Feb 2006
- Posts
- 11
(plz clarify) Reg. sequence numbers in TCP packets
TCP RFC states that sequence numbers are given to each TCP octet(or byte)
Suppose i use a C function like:
send(sock, msg, len, 0);
where msg is a multi-octet array.
Does the statement mean that for each octet of msg, a separate TCP packet is constructed with its own sequence number?
If not, i.e. only one TCP packet consisting of a TCP header and data(msg) is constructed, how is it that each octet of msg assigned a unique sequence number?
Please clarify


Reply With Quote
