Merge pull request #95 from Arceliar/tcpfix

fix npe, these don't need to be pointers
This commit is contained in:
Arceliar 2018-05-27 13:28:51 -05:00 committed by GitHub
commit 707e23d392
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
}