mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 20:07:40 +03:00
Fix gateway & FIx prefix check
This commit is contained in:
parent
07278fb470
commit
10f73346a0
8 changed files with 111 additions and 45 deletions
8
stack.go
8
stack.go
|
@ -59,6 +59,14 @@ func NewStack(
|
|||
}
|
||||
}
|
||||
|
||||
func HasNextAddress(prefix netip.Prefix, count int) bool {
|
||||
checkAddr := prefix.Addr()
|
||||
for i := 0; i < count; i++ {
|
||||
checkAddr = checkAddr.Next()
|
||||
}
|
||||
return prefix.Contains(checkAddr)
|
||||
}
|
||||
|
||||
func BroadcastAddr(inet4Address []netip.Prefix) netip.Addr {
|
||||
if len(inet4Address) == 0 {
|
||||
return netip.Addr{}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue