5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-09 16:20:26 +00:00

Print when peermacs learned

This commit is contained in:
Neil Alexander 2018-12-26 11:57:08 +00:00
parent 9eeb482587
commit b3d6c9a385
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944

View File

@ -180,7 +180,7 @@ func (i *icmpv6) parse_packet_tun(datain []byte, datamac *[]byte) ([]byte, error
copy(addr[:], ipv6Header.Src[:])
copy(target[:], datain[48:64])
copy(mac[:], (*datamac)[:])
// i.tun.core.log.Println("Learning peer MAC", mac, "for", target)
i.tun.core.log.Printf("Learning peer MAC %x for %x\n", mac, target)
neighbor := i.peermacs[target]
neighbor.mac = mac
neighbor.learned = true