5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-20 01:22:33 +00:00

fix npe, these don't need to be pointers

This commit is contained in:
Arceliar 2018-05-27 13:22:21 -05:00
parent 5131d854e5
commit 02ba9dc97c

View File

@ -20,8 +20,8 @@ type Core struct {
admin admin
searches searches
multicast multicast
tcp *tcpInterface
udp *udpInterface
tcp tcpInterface
udp udpInterface
log *log.Logger
ifceExpr []*regexp.Regexp // the zone of link-local IPv6 peers must match this
}