mirror of
https://github.com/impact-eintr/netstack.git
synced 2025-10-06 13:26:49 +08:00
8 lines
128 B
Go
8 lines
128 B
Go
// 主机的链路层寻址是通过 arp 表来实现的
|
|
package arp
|
|
|
|
const (
|
|
ProtocolName = "arp"
|
|
ProtocolNumber = "arp"
|
|
)
|