net: update licence for network headers
[dpdk.git] / lib / librte_net / rte_tcp.h
1 /*
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright(c) 1982, 1986, 1990, 1993
5  *      The Regents of the University of California.
6  * Copyright(c) 2010-2014 Intel Corporation.
7  * All rights reserved.
8  */
9
10 #ifndef _RTE_TCP_H_
11 #define _RTE_TCP_H_
12
13 /**
14  * @file
15  *
16  * TCP-related defines
17  */
18
19 #include <stdint.h>
20
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24
25 /**
26  * TCP Header
27  */
28 struct tcp_hdr {
29         uint16_t src_port;  /**< TCP source port. */
30         uint16_t dst_port;  /**< TCP destination port. */
31         uint32_t sent_seq;  /**< TX data sequence number. */
32         uint32_t recv_ack;  /**< RX data acknowledgement sequence number. */
33         uint8_t  data_off;  /**< Data offset. */
34         uint8_t  tcp_flags; /**< TCP flags */
35         uint16_t rx_win;    /**< RX flow control window. */
36         uint16_t cksum;     /**< TCP checksum. */
37         uint16_t tcp_urp;   /**< TCP urgent pointer, if any. */
38 } __attribute__((__packed__));
39
40 #ifdef __cplusplus
41 }
42 #endif
43
44 #endif /* RTE_TCP_H_ */