net: replace htons with constant endian swap

htons is not defined in Windows with the MinGW compiler.
htons is replaced with RTE_BE16 in order to compile under Windows.

Signed-off-by: Fady Bader <fady@mellanox.com>
Acked-by: Ranjit Menon <ranjit.menon@intel.com>
Tested-by: Pallavi Kadam <pallavi.kadam@intel.com>
This commit is contained in:
Fady Bader 2020-07-23 10:08:24 +03:00 committed by Thomas Monjalon
parent 507e1ca07b
commit 64fb21d86b

View File

@ -2,9 +2,8 @@
* Copyright(c) 2018 Intel Corporation * Copyright(c) 2018 Intel Corporation
*/ */
#include <arpa/inet.h>
#include <rte_arp.h> #include <rte_arp.h>
#include <rte_byteorder.h>
#define RARP_PKT_SIZE 64 #define RARP_PKT_SIZE 64
struct rte_mbuf * struct rte_mbuf *
@ -32,15 +31,15 @@ rte_net_make_rarp_packet(struct rte_mempool *mpool,
/* Ethernet header. */ /* Ethernet header. */
memset(eth_hdr->d_addr.addr_bytes, 0xff, RTE_ETHER_ADDR_LEN); memset(eth_hdr->d_addr.addr_bytes, 0xff, RTE_ETHER_ADDR_LEN);
rte_ether_addr_copy(mac, &eth_hdr->s_addr); rte_ether_addr_copy(mac, &eth_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 header. */
rarp = (struct rte_arp_hdr *)(eth_hdr + 1); rarp = (struct rte_arp_hdr *)(eth_hdr + 1);
rarp->arp_hardware = htons(RTE_ARP_HRD_ETHER); rarp->arp_hardware = RTE_BE16(RTE_ARP_HRD_ETHER);
rarp->arp_protocol = htons(RTE_ETHER_TYPE_IPV4); rarp->arp_protocol = RTE_BE16(RTE_ETHER_TYPE_IPV4);
rarp->arp_hlen = RTE_ETHER_ADDR_LEN; rarp->arp_hlen = RTE_ETHER_ADDR_LEN;
rarp->arp_plen = 4; 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_sha);
rte_ether_addr_copy(mac, &rarp->arp_data.arp_tha); rte_ether_addr_copy(mac, &rarp->arp_data.arp_tha);