???
This commit is contained in:
parent
3dc455713b
commit
8b1861fb90
1 changed files with 2 additions and 2 deletions
4
aarp.go
4
aarp.go
|
@ -252,13 +252,13 @@ func (a *AARPMachine) reroll() {
|
|||
|
||||
// Send an AARP response
|
||||
func (a *AARPMachine) heyThatsMe(targ aarp.AddrPair) error {
|
||||
respFrame, err := ethertalk.AARP(a.myAddr.Hardware, aarp.Response(targ, a.myAddr))
|
||||
respFrame, err := ethertalk.AARP(a.myAddr.Hardware, aarp.Response(a.myAddr, targ))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
log.Printf("AARP: sending packet %+v", respFrame)
|
||||
// Instead of broadcasting the reply, send it to the target specifically?
|
||||
//respFrame.Dst = targ.Hardware
|
||||
respFrame.Dst = targ.Hardware
|
||||
respFrameRaw, err := ethertalk.Marshal(*respFrame)
|
||||
if err != nil {
|
||||
return err
|
||||
|
|
Loading…
Reference in a new issue