Skip to content
Snippets Groups Projects
Commit 4b8fd25b authored by Phil's avatar Phil
Browse files

Fixed MobileIPRRP/Q id field (ticket #134)

parent 571d20a0
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ class MobileIPRRQ(Packet):
IPField("homeaddr", "0.0.0.0"),
IPField("haaddr", "0.0.0.0"),
IPField("coaddr", "0.0.0.0"),
Field("id", "", "64s") ]
LongField("id", 0), ]
class MobileIPRRP(Packet):
name = "Mobile IP Registration Reply (RFC3344)"
......@@ -27,7 +27,7 @@ class MobileIPRRP(Packet):
ShortField("lifetime", 180),
IPField("homeaddr", "0.0.0.0"),
IPField("haaddr", "0.0.0.0"),
Field("id", "", "64s") ]
LongField("id", 0), ]
class MobileIPTunnelData(Packet):
name = "Mobile IP Tunnel Data Message (RFC3519)"
......
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