X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Flibrte_net%2Frte_arp.c;h=5c1e27b8c0fe3ec3e2d7332642e472a338bdcc4f;hb=d354c5e77666f443dfdb1dadc7b8abe0c9fe258d;hp=cfd6e03a08df5765d6658398f214511770eedb24;hpb=0c9da7555da8c8373dfd69f798f832723ae6de71;p=dpdk.git diff --git a/lib/librte_net/rte_arp.c b/lib/librte_net/rte_arp.c index cfd6e03a08..5c1e27b8c0 100644 --- a/lib/librte_net/rte_arp.c +++ b/lib/librte_net/rte_arp.c @@ -2,12 +2,11 @@ * Copyright(c) 2018 Intel Corporation */ -#include - #include +#include #define RARP_PKT_SIZE 64 -struct rte_mbuf * __rte_experimental +struct rte_mbuf * rte_net_make_rarp_packet(struct rte_mempool *mpool, const struct rte_ether_addr *mac) { @@ -32,15 +31,15 @@ rte_net_make_rarp_packet(struct rte_mempool *mpool, /* Ethernet header. */ memset(eth_hdr->d_addr.addr_bytes, 0xff, RTE_ETHER_ADDR_LEN); rte_ether_addr_copy(mac, ð_hdr->s_addr); - eth_hdr->ether_type = htons(RTE_ETHER_TYPE_RARP); + eth_hdr->ether_type = RTE_BE16(RTE_ETHER_TYPE_RARP); /* RARP header. */ rarp = (struct rte_arp_hdr *)(eth_hdr + 1); - rarp->arp_hardware = htons(RTE_ARP_HRD_ETHER); - rarp->arp_protocol = htons(RTE_ETHER_TYPE_IPV4); + rarp->arp_hardware = RTE_BE16(RTE_ARP_HRD_ETHER); + rarp->arp_protocol = RTE_BE16(RTE_ETHER_TYPE_IPV4); rarp->arp_hlen = RTE_ETHER_ADDR_LEN; rarp->arp_plen = 4; - rarp->arp_opcode = htons(RTE_ARP_OP_REVREQUEST); + rarp->arp_opcode = RTE_BE16(RTE_ARP_OP_REVREQUEST); rte_ether_addr_copy(mac, &rarp->arp_data.arp_sha); rte_ether_addr_copy(mac, &rarp->arp_data.arp_tha);