doc: add Meson coding style to contributors guide
[dpdk.git] / lib / librte_net / rte_sctp.h
index bfb7165..965682d 100644 (file)
@@ -20,15 +20,17 @@ extern "C" {
 
 #include <stdint.h>
 
+#include <rte_byteorder.h>
+
 /**
  * SCTP Header
  */
-struct sctp_hdr {
-       uint16_t src_port; /**< Source port. */
-       uint16_t dst_port; /**< Destin port. */
-       uint32_t tag;      /**< Validation tag. */
-       uint32_t cksum;    /**< Checksum. */
-} __attribute__((__packed__));
+struct rte_sctp_hdr {
+       rte_be16_t src_port; /**< Source port. */
+       rte_be16_t dst_port; /**< Destin port. */
+       rte_be32_t tag;      /**< Validation tag. */
+       rte_be32_t cksum;    /**< Checksum. */
+} __rte_packed;
 
 #ifdef __cplusplus
 }