Chupa said:
TCP/IP protocol,
adapter is intel gigabit network interface
built-on-chip,
how to translate packets of trafic into bytes?
its on win2k3 srver.
One cannot do that, without knowing the actual
contents.
Note that TCP and IP are not even the same
'protocol' -- IP is what gets packets from here
to there, and TCP is a another member of the
IP (or TCP/IP) protocol SUITE.
[A 'suite' is a group of protocols that are installed
and configured together. In English the word suite
is also used for a office inside of (larger) building
which has "multiple rooms" or in a hotel where
there is more than room assigned to the guest, e.g.,
"an office suite" or "a suite of rooms".]
With TCP programmers pay little attention to packet
size -- TCP (the protocol) takes care of cutting the
stream of date into appropriate chunks. The programmer
just treats the (open) stream like a file or other pipe:
send data to it and let the protocol take care of the
details of delivery.
With UDP (the major alternative to TCP) the programmer
must actually worry about things like (maximum) packet
size and error correction or receipt confirmation.