Pndpd/pndp/NDPRequest.go
2021-12-25 08:21:07 -05:00

25 lines
376 B
Go

package pndp
type ndpType int
const (
ndp_ADV ndpType = 0
ndp_SOL ndpType = 1
)
type ndpRequest struct {
requestType ndpType
srcIP []byte
answeringForIP []byte
dstIP []byte
mac []byte
receivedIfaceMac []byte
sourceIface string
rawPacket []byte
}
type ndpQuestion struct {
targetIP []byte
askedBy []byte
}