Fixed cookie reply processing bug
This commit is contained in:
parent
70179f8c8c
commit
ed31e75739
10 changed files with 173 additions and 95 deletions
17
src/ip.go
17
src/ip.go
|
|
@ -5,14 +5,17 @@ import (
|
|||
)
|
||||
|
||||
const (
|
||||
IPv4version = 4
|
||||
IPv4offsetSrc = 12
|
||||
IPv4offsetDst = IPv4offsetSrc + net.IPv4len
|
||||
IPv4headerSize = 20
|
||||
IPv4version = 4
|
||||
IPv4offsetTotalLength = 2
|
||||
IPv4offsetSrc = 12
|
||||
IPv4offsetDst = IPv4offsetSrc + net.IPv4len
|
||||
IPv4headerSize = 20
|
||||
)
|
||||
|
||||
const (
|
||||
IPv6version = 6
|
||||
IPv6offsetSrc = 8
|
||||
IPv6offsetDst = IPv6offsetSrc + net.IPv6len
|
||||
IPv6version = 6
|
||||
IPv6offsetPayloadLength = 4
|
||||
IPv6offsetSrc = 8
|
||||
IPv6offsetDst = IPv6offsetSrc + net.IPv6len
|
||||
IPv6headerSize = 40
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue