mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-02-15 03:11:50 +00:00
Remove sourceSubnet from router
This commit is contained in:
parent
e3d4aed44a
commit
19e6aaf9f5
1 changed files with 0 additions and 2 deletions
|
@ -125,11 +125,9 @@ func (r *router) sendPacket(bs []byte) {
|
||||||
panic("Tried to send a packet shorter than a header...")
|
panic("Tried to send a packet shorter than a header...")
|
||||||
}
|
}
|
||||||
var sourceAddr address
|
var sourceAddr address
|
||||||
var sourceSubnet subnet
|
|
||||||
var dest address
|
var dest address
|
||||||
var snet subnet
|
var snet subnet
|
||||||
copy(sourceAddr[:], bs[8:])
|
copy(sourceAddr[:], bs[8:])
|
||||||
copy(sourceSubnet[:], bs[8:])
|
|
||||||
if !r.cryptokey.isValidSource(sourceAddr) {
|
if !r.cryptokey.isValidSource(sourceAddr) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue