Go to the documentation of this file.
35 #define TCP_HDR_OFFSET_MIN (0x05)
36 #define TCP_HDR_OFFSET_MAX (0x0F)
43 #define TCP_OPTION_KIND_EOL (0x00)
44 #define TCP_OPTION_KIND_NOP (0x01)
45 #define TCP_OPTION_KIND_MSS (0x02)
52 #define TCP_OPTION_LENGTH_MIN (2U)
53 #define TCP_OPTION_LENGTH_MSS (0x04)
59 typedef struct __attribute__((packed)) {
73 typedef struct __attribute__((packed)) {
uint8_t length
TCP options "Length" field.
A 32 bit integer in big endian aka network byte order.
uint8_t kind
TCP options "Kind" field.
Functions to work with different byte orders.
A 16 bit integer in big endian aka network byte order.
network_uint16_t src_port
Source port, in network byte order.
network_uint16_t urgent_ptr
Urgent pointer, in network byte order.
network_uint32_t ack_num
Acknowledgement number, in network byte order.
network_uint16_t checksum
Checksum, in network byte order.
TCP option field helper structure.
void tcp_hdr_print(tcp_hdr_t *hdr)
Print the given TCP header to STDOUT.
network_uint32_t seq_num
Sequence number, in network byte order.
network_uint16_t off_ctl
Data Offset and control Bits in network byte order.
network_uint16_t window
Window, in network byte order.
network_uint16_t dst_port
Destination port, in network byte order.