blob: b17d3d7ecf0fd7c435c529ed9298bcdca28daab4 [file] [log] [blame]
Neale Ranns999c8ee2019-02-01 03:31:24 -08001/*
2 * Copyright (c) 2015 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#ifndef __IPSEC_IO_H__
16#define __IPSEC_IO_H__
17
Neale Ranns999c8ee2019-02-01 03:31:24 -080018#define foreach_ipsec_output_next \
Kingwel Xiec69ac312019-02-04 01:49:29 -080019 _ (DROP, "error-drop")
Neale Ranns999c8ee2019-02-01 03:31:24 -080020
21#define _(v, s) IPSEC_OUTPUT_NEXT_##v,
22typedef enum
23{
24 foreach_ipsec_output_next
25#undef _
26 IPSEC_OUTPUT_N_NEXT,
27} ipsec_output_next_t;
28
29#define foreach_ipsec_input_next \
Neale Rannsb71fa752019-04-04 12:43:36 +000030 _ (PUNT, "punt-dispatch") \
Kingwel Xiec69ac312019-02-04 01:49:29 -080031 _ (DROP, "error-drop")
Neale Ranns999c8ee2019-02-01 03:31:24 -080032
Neale Ranns999c8ee2019-02-01 03:31:24 -080033typedef enum
34{
Neale Rannsc87b66c2019-02-07 07:26:12 -080035#define _(v, s) IPSEC_INPUT_NEXT_##v,
Neale Ranns999c8ee2019-02-01 03:31:24 -080036 foreach_ipsec_input_next
37#undef _
38 IPSEC_INPUT_N_NEXT,
39} ipsec_input_next_t;
40
41
42typedef struct
43{
44 u32 spd_index;
45} ip4_ipsec_config_t;
46
47typedef struct
48{
49 u32 spd_index;
50} ip6_ipsec_config_t;
51
52#endif /* __IPSEC_IO_H__ */
53
54/*
55 * fd.io coding-style-patch-verification: ON
56 *
57 * Local Variables:
58 * eval: (c-set-style "gnu")
59 * End:
60 */