mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
Fix system ipv4 overflow
This commit is contained in:
parent
0032242c96
commit
80ee994727
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ func (p IPv4Packet) PseudoSum() uint32 {
|
|||
}
|
||||
|
||||
func (p IPv4Packet) Valid() bool {
|
||||
return len(p) >= IPv4HeaderSize && uint16(len(p)) >= p.TotalLen()
|
||||
return len(p) >= IPv4HeaderSize && p.TotalLen() >= p.HeaderLen() && uint16(len(p)) >= p.TotalLen()
|
||||
}
|
||||
|
||||
func (p IPv4Packet) Verify() error {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue