TCP Vendor Crawlers¶
This module contains all vendor crawlers of
TCP implementations. Available
vendor crawlers include:
TCP Checksum¶
This module contains the vendor crawler for TCP Checksum,
which is automatically generating pcapkit.const.tcp.checksum.Checksum.
Multipath TCP options¶
This module contains the vendor crawler for Multipath TCP options,
which is automatically generating pcapkit.const.tcp.mp_tcp_option.MPTCPOption.
TCP Option Kind Numbers¶
This module contains the vendor crawler for TCP Option Kind Numbers,
which is automatically generating pcapkit.const.tcp.option.Option.
TCP Header Flags¶
This module contains the vendor crawler for TCP Header Flags,
which is automatically generating pcapkit.const.tcp.flags.Flags.
- class pcapkit.vendor.tcp.flags.Flags[source]¶
Bases:
VendorTCP Header Flags
- FLAG: str = 'isinstance(value, int) and 0 <= value <= 0xFFFF'¶
Value limit checker. The registry indexes bit offsets 4 through 15, but the members it generates are
1 << offset, so the value domain a lookup has to accept is the 16-bit field those bits live in – a composite such asSYN | ACKis a legitimate value and only the composite path reaches_missing_().
Footnotes