No DEBUG_ calls from src/yggdrasil

This commit is contained in:
Neil Alexander 2018-05-24 11:49:40 +01:00
parent eac1c85a62
commit 196a14d8d2
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944
5 changed files with 47 additions and 7 deletions

View file

@ -68,7 +68,7 @@ func (m *multicast) start() error {
go m.listen()
go m.announce()
}
return nil
return nil
}
func (m *multicast) announce() {
@ -152,7 +152,7 @@ func (m *multicast) listen() {
saddr := addr.String()
//if _, isIn := n.peers[saddr]; isIn { continue }
//n.peers[saddr] = struct{}{}
m.core.DEBUG_addTCPConn(saddr)
m.core.tcp.connect(saddr)
//fmt.Println("DEBUG:", "added multicast peer:", saddr)
}
}