A network engineer is troubleshooting a custom financial trading application that streams tick data across an enterprise WAN link. During micro-burst traffic spikes, application logs report severe latency variations and out-of-order message processing, despite zero interface drops recorded on local router interfaces. Wireshark analysis reveals that the Layer 4 header of the application frames is fixed at 8 bytes in length, with no explicit Sequence Number or Acknowledgment Number fields present. However, the software development team insists that the transport protocol itself is executing dynamic windowing flow control to handle the latency. Which statement correctly identifies the transport protocol in use and explains why the developer's claim regarding Layer 4 flow control is incorrect?
- The protocol is UDP; UDP has a fixed 8-byte header and is completely connectionless and stateless, meaning any reliability, sequencing, or reordering mechanisms must be implemented in the application layer rather than at Layer 4.Cevap
- BThe protocol is TCP utilizing Van Jacobson header compression; the 20-byte TCP header is dynamically stripped down to 8 bytes while maintaining Layer 4 windowing controls across active sessions.
- CThe protocol is UDP; UDP automatically activates lightweight Layer 4 sliding window mechanisms whenever link utilization exceeds 80% to prevent buffer exhaustion.
- DThe protocol is TCP operating in connectionless mode; TCP omits sequence and ACK fields when transmitting real-time data to lower protocol overhead to 8 bytes.