net: add rte prefix to arp structures
[dpdk.git] / lib / librte_net / rte_arp.h
index 139a84c..cf187d7 100644 (file)
@@ -21,7 +21,7 @@ extern "C" {
 /**
  * ARP header IPv4 payload.
  */
-struct arp_ipv4 {
+struct rte_arp_ipv4 {
        struct ether_addr arp_sha;  /**< sender hardware address */
        uint32_t          arp_sip;  /**< sender IP address */
        struct ether_addr arp_tha;  /**< target hardware address */
@@ -31,7 +31,7 @@ struct arp_ipv4 {
 /**
  * ARP header.
  */
-struct arp_hdr {
+struct rte_arp_hdr {
        uint16_t arp_hrd;    /* format of hardware address */
 #define ARP_HRD_ETHER     1  /* ARP Ethernet address format */
 
@@ -46,7 +46,7 @@ struct arp_hdr {
 #define        ARP_OP_INVREQUEST 8 /* request to identify peer */
 #define        ARP_OP_INVREPLY   9 /* response identifying peer */
 
-       struct arp_ipv4 arp_data;
+       struct rte_arp_ipv4 arp_data;
 } __attribute__((__packed__));
 
 /**