ip: add support for buffer offload metadata in ip midchain
[vpp.git] / src / vnet / ip / ip_sas.h
1 /*
2  * Copyright (c) 2021 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #ifndef included_ip_sas_h
17 #define included_ip_sas_h
18
19 #include <stdbool.h>
20 #include <vnet/ip/ip6_packet.h>
21 #include <vnet/ip/ip4_packet.h>
22
23 bool ip6_sas_by_sw_if_index (u32 sw_if_index, const ip6_address_t *dst,
24                              ip6_address_t *src);
25 bool ip4_sas_by_sw_if_index (u32 sw_if_index, const ip4_address_t *dst,
26                              ip4_address_t *src);
27 bool ip6_sas (u32 table_id, u32 sw_if_index, const ip6_address_t *dst,
28               ip6_address_t *src);
29 bool ip4_sas (u32 table_id, u32 sw_if_index, const ip4_address_t *dst,
30               ip4_address_t *src);
31
32 #endif