remove NodeARP in favor of arp.Handler; fix bug in IP stack node handling; use registerNode where applicable

This commit is contained in:
soypat
2025-07-14 19:48:29 -03:00
parent 1549e563e9
commit 61c66a2e58
9 changed files with 29 additions and 32 deletions
+1 -1
View File
@@ -195,7 +195,7 @@ func NewEthernetTCPStack(ourMAC, gwMAC [6]byte, ip netip.AddrPort, mtu uint16, s
if err != nil {
return nil, nil, err
}
err = ipStack.RegisterTCPConn(&conn)
err = ipStack.Register(&conn)
if err != nil {
return nil, nil, err
}