Skip to content
Snippets Groups Projects
Commit 17dbbf94 authored by Guillaume Valadon's avatar Guillaume Valadon
Browse files

Merge pull request #60 from p-l-/feature-tcp-flags

TCP: support flag Nonce Sum (N)
parents d1e1aa70 ca79f8ec
No related branches found
No related tags found
No related merge requests found
...@@ -440,8 +440,8 @@ class TCP(Packet): ...@@ -440,8 +440,8 @@ class TCP(Packet):
IntField("seq", 0), IntField("seq", 0),
IntField("ack", 0), IntField("ack", 0),
BitField("dataofs", None, 4), BitField("dataofs", None, 4),
BitField("reserved", 0, 4), BitField("reserved", 0, 3),
FlagsField("flags", 0x2, 8, "FSRPAUEC"), FlagsField("flags", 0x2, 9, "FSRPAUECN"),
ShortField("window", 8192), ShortField("window", 8192),
XShortField("chksum", None), XShortField("chksum", None),
ShortField("urgptr", 0), ShortField("urgptr", 0),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment