5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-19 00:59:37 +00:00

Fix OpenBSD (tested and working on 6.4)

This commit is contained in:
Neil Alexander 2018-12-26 12:25:28 +00:00
parent b3d6c9a385
commit 74692b689a
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944

View File

@ -180,12 +180,12 @@ 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.Printf("Learning peer MAC %x for %x\n", mac, 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
neighbor.lastadvertisement = time.Now()
i.peermacs[addr] = neighbor
i.peermacs[target] = neighbor
}
return nil, errors.New("No response needed")
}