No code changes; export some functions/struct.

This commit is contained in:
Kleissner
2021-02-26 14:45:16 +01:00
parent fec65603f5
commit ea05439262
9 changed files with 26 additions and 24 deletions

View File

@@ -92,7 +92,7 @@ func parseAddress(Address string) (remote *net.UDPAddr, err error) {
// contact tries to contact the root peer on all networks
func (peer *rootPeer) contact() {
for _, address := range peer.addresses {
sendAllNetworks(peer.publicKey, &packetRaw{Command: 0}, address)
sendAllNetworks(peer.publicKey, &PacketRaw{Command: 0}, address)
}
}