1.2.3.1.2 TCP_ADJUST_FLAGS Enumeration

C

typedef enum {
TCP_ADJUST_GIVE_REST_TO_RX = 0x01,
TCP_ADJUST_GIVE_REST_TO_TX = 0x02,
TCP_ADJUST_PRESERVE_RX = 0x04,
TCP_ADJUST_PRESERVE_TX = 0x08,
TCP_ADJUST_TX_ONLY = 0x10,
TCP_ADJUST_RX_ONLY = 0x20
} TCP_ADJUST_FLAGS;

Description

Enumeration: TCP_ADJUST_FLAGS.

Adjusts socket RX and TX buffer sizes.

Members

MembersDescription
TCP_ADJUST_GIVE_REST_TO_RX = 0x01Resize flag: extra bytes go to RX.
TCP_ADJUST_GIVE_REST_TO_TX = 0x02Resize flag: extra bytes go to TX.
TCP_ADJUST_PRESERVE_RX = 0x04Resize flag: attempt to preserve RX buffer.
TCP_ADJUST_PRESERVE_TX = 0x08Resize flag: attempt to preserve TX buffer.
TCP_ADJUST_TX_ONLY = 0x10Resize flag: adjust the TX buffer only.
TCP_ADJUST_RX_ONLY = 0x20Resize flag: adjust the RX buffer only.