mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-28 22:25:07 +03:00
Add regexp to limit which link-local IPv6 zones allow peering, and check that a peer isn't from within the networks address block (prevents accidental tunneling)
This commit is contained in:
parent
b76fcbb402
commit
ef1e0c902f
4 changed files with 26 additions and 1 deletions
|
@ -2,6 +2,7 @@ package yggdrasil
|
|||
|
||||
import "io/ioutil"
|
||||
import "log"
|
||||
import "regexp"
|
||||
|
||||
type Core struct {
|
||||
// This is the main data structure that holds everything else for a node
|
||||
|
@ -23,6 +24,7 @@ type Core struct {
|
|||
tcp *tcpInterface
|
||||
udp *udpInterface
|
||||
log *log.Logger
|
||||
ifceExpr *regexp.Regexp // the zone of link-local IPv6 peers must match this
|
||||
}
|
||||
|
||||
func (c *Core) Init() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue