diff options
Diffstat (limited to 'lib/librte_gso/gso_common.h')
-rw-r--r-- | lib/librte_gso/gso_common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/librte_gso/gso_common.h b/lib/librte_gso/gso_common.h index 5ca59745..6cd764ff 100644 --- a/lib/librte_gso/gso_common.h +++ b/lib/librte_gso/gso_common.h @@ -31,6 +31,9 @@ (PKT_TX_TCP_SEG | PKT_TX_IPV4 | PKT_TX_OUTER_IPV4 | \ PKT_TX_TUNNEL_GRE)) +#define IS_IPV4_UDP(flag) (((flag) & (PKT_TX_UDP_SEG | PKT_TX_IPV4)) == \ + (PKT_TX_UDP_SEG | PKT_TX_IPV4)) + /** * Internal function which updates the UDP header of a packet, following * segmentation. This is required to update the header's datagram length field. |