The list of practically important ARP opcodes
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.
// // The list of practically important ARP opcodes // enum ARPOpcode { ARP_REQUEST = 1; // Request. RFC 826 ARP_REPLY = 2; // Reply. RFC 826, RFC 1868 ARP_RARP_REQUEST = 3; // Request Reverse. RFC 903 ARP_RARP_REPLY = 4; // Reply Reverse. RFC 903 }