mirror of
https://github.com/openziti/zrok.git
synced 2025-03-11 21:38:47 +01:00
avoid logging stray packets (multicast, etc)
This commit is contained in:
parent
06b94a6c2a
commit
6302ed66b2
@ -125,7 +125,9 @@ func (b *Backend) readTun() {
|
|||||||
b.clients.Remove(dest)
|
b.clients.Remove(dest)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
logrus.Errorf("no client with address[%v]", dest)
|
if b.subnet.Contains(net.IP(dest.addr[:])) {
|
||||||
|
logrus.Errorf("no client with address[%v]", dest)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user