When will a TCP network packet be fragmented at the application layer?

后端 未结 10 1792
借酒劲吻你
借酒劲吻你 2020-11-30 02:59

When will a TCP packet be fragmented at the application layer? When a TCP packet is sent from an application, will the recipient at the application layer ever receive the p

10条回答
  •  既然无缘
    2020-11-30 03:57

    If a packet exceeds the maximum MTU of a network device it will be broken up into multiple packets. (Note most equipment is set to 1500 bytes, but this is not a necessity.)

    The reconstruction of the packet should be entirely transparent to the applications.

提交回复
热议问题