mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
Update Network.h
Missing argument check lead to wrong value of IsIPv6 of struct UDP_ACCEL in NewUdpAccel(), eventually lead to UdpAccelInitClient() fail.
This commit is contained in:
parent
918fedb9d4
commit
0b74a8e4ce
@ -87,7 +87,7 @@ struct IP
|
|||||||
|
|
||||||
#define CmpIpAddr(ip1, ip2) (Cmp((ip1)->address, (ip2)->address, sizeof((ip1)->address)))
|
#define CmpIpAddr(ip1, ip2) (Cmp((ip1)->address, (ip2)->address, sizeof((ip1)->address)))
|
||||||
|
|
||||||
#define IsIP6(ip) (IsIP4(ip) == false)
|
#define IsIP6(ip) (ip && IsIP4(ip) == false)
|
||||||
#define IsZeroIp(ip) (IsZeroIP(ip))
|
#define IsZeroIp(ip) (IsZeroIP(ip))
|
||||||
|
|
||||||
// IPv6 address (different format)
|
// IPv6 address (different format)
|
||||||
|
Loading…
Reference in New Issue
Block a user