2 * Copyright (c) 2016 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:
7 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 * @brief Definitions for punt infrastructure.
20 #ifndef included_punt_h
21 #define included_punt_h
28 #define punt_error(n,s) PUNT_ERROR_##n,
29 #include <vnet/ip/punt_error.def>
35 clib_error_t *vnet_punt_add_del (vlib_main_t * vm, u8 ipv,
36 u8 protocol, u16 port, bool is_add);
37 clib_error_t *vnet_punt_socket_add (vlib_main_t * vm, u32 header_version,
38 bool is_ip4, u8 protocol, u16 port,
39 char *client_pathname);
40 clib_error_t *vnet_punt_socket_del (vlib_main_t * vm, bool is_ip4,
41 u8 l4_protocol, u16 port);
42 char *vnet_punt_get_server_pathname (void);
52 * Packet descriptor header. Version 1
53 * If this header changes, the version must also change to notify clients.
55 #define PUNT_PACKETDESC_VERSION 1
56 typedef struct __attribute__ ((packed))
58 u32 sw_if_index; /* RX or TX interface */
59 enum punt_action_e action;
68 struct sockaddr_un caddr;
74 char sun_path[sizeof (struct sockaddr_un)];
75 punt_client_t *clients_by_dst_port4;
76 punt_client_t *clients_by_dst_port6;
79 vlib_node_t *interface_output_node;
83 extern punt_main_t punt_main;
88 * fd.io coding-style-patch-verification: ON
91 * eval: (c-set-style "gnu")