Pndpd/NDPRequest.go
2021-12-21 06:00:28 -05:00

19 lines
287 B
Go

package main
type NDPType int
const (
NDP_ADV NDPType = 0
NDP_SOL NDPType = 1
)
type NDRequest struct {
requestType NDPType
srcIP []byte
answeringForIP []byte
dstIP []byte
mac []byte
receivedIfaceMac []byte
sourceIface string
}