diff options
author | Neale Ranns <nranns@cisco.com> | 2019-05-21 06:54:54 -0700 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-06-04 10:32:46 +0000 |
commit | b538dd868665009f9a3737610177342f88e3ba80 (patch) | |
tree | 2e2a1964e56a70e7c2584668b8f32017311e834c /src/vnet/ip/punt.api | |
parent | 0c6ac791dde099346af1752aa92d0eb05fc2db11 (diff) |
Punt: specify packets by IP protocol Type
Change-Id: I0c2d6fccd95146e52bb88ca4a6e84554d5d6b2ed
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/ip/punt.api')
-rw-r--r-- | src/vnet/ip/punt.api | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/vnet/ip/punt.api b/src/vnet/ip/punt.api index cedddc5601d..6cb27311726 100644 --- a/src/vnet/ip/punt.api +++ b/src/vnet/ip/punt.api @@ -22,6 +22,8 @@ enum punt_type { /* L4 (UDP) packets */ PUNT_API_TYPE_L4, + /* IP proto (i.e. OSPF, RIP, etc) packets */ + PUNT_API_TYPE_IP_PROTO, /* Exception packets handled by the VLIB punt infra */ PUNT_API_TYPE_EXCEPTION, }; @@ -38,6 +40,16 @@ typedef punt_l4 u16 port; }; +/** \brief Punt IP protocol traffic definition + @param af - Address Family, IPv4 or IPV6 + @param protocol - IP protocol to be punted +*/ +typedef punt_ip_proto +{ + vl_api_address_family_t af; + vl_api_ip_proto_t protocol; +}; + /** \brief The ID of the punt exception reason Dump all the reasons to obtain this */ @@ -52,6 +64,7 @@ union punt_union { vl_api_punt_exception_t exception; vl_api_punt_l4_t l4; + vl_api_punt_ip_proto_t ip_proto; }; /** \brief Full description of which packets are requested to be punted |