3110 - comment out not-yet-implemented TCP description

This commit is contained in:
Marek Wolan
2025-03-13 14:21:56 +00:00
parent d4287d6690
commit 128b459c04

View File

@@ -14,9 +14,11 @@ Transport Layer (Layer 4)
**UDPHeader:** Represents a UDP header for the transport layer of a Network Frame. It includes source and destination **UDPHeader:** Represents a UDP header for the transport layer of a Network Frame. It includes source and destination
ports. UDP (User Datagram Protocol) is a connectionless and unreliable transport protocol used for data transmission. ports. UDP (User Datagram Protocol) is a connectionless and unreliable transport protocol used for data transmission.
..
**TCPFlags:** Enum representing TCP control flags used in a TCP connection, such as SYN, ACK, FIN, and RST. TCP **TCPFlags:** Enum representing TCP control flags used in a TCP connection, such as SYN, ACK, FIN, and RST. TCP
(Transmission Control Protocol) is a connection-oriented and reliable transport protocol used for establishing and (Transmission Control Protocol) is a connection-oriented and reliable transport protocol used for establishing and
maintaining data streams. maintaining data streams.
.. not currently used
**TCPHeader:** Represents a TCP header for the transport layer of a Network Frame. It includes source and destination **TCPHeader:** Represents a TCP header for the transport layer of a Network Frame. It includes source and destination
ports and TCP flags. This header is used for establishing and managing TCP connections. ports and TCP flags. This header is used for establishing and managing TCP connections.