FD.io VPP  v17.04-9-g99c0734
Vector Packet Processing
application_interface.h
Go to the documentation of this file.
1 /*
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:
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 __included_uri_h__
16 #define __included_uri_h__
17 
18 #include <vlib/vlib.h>
19 #include <vnet/vnet.h>
20 #include <svm/svm_fifo_segment.h>
21 #include <vnet/session/session.h>
23 #include <vnet/session/transport.h>
24 
25 typedef enum _session_api_proto
26 {
30 
31 typedef struct _vnet_bind_args_t
32 {
33  union
34  {
35  char *uri;
36  struct
37  {
39  session_api_proto_t proto;
40  };
41  };
42 
43  u32 api_client_index;
44  u64 *options;
46 
47  /*
48  * Results
49  */
50  char *segment_name;
51  u32 segment_name_length;
52  u64 server_event_queue_address;
53  u64 handle;
55 
56 typedef struct _vnet_unbind_args_t
57 {
58  union
59  {
60  char *uri;
61  u64 handle;
62  };
63  u32 api_client_index;
65 
66 typedef struct _vnet_connect_args
67 {
68  union
69  {
70  char *uri;
71  struct
72  {
74  session_api_proto_t proto;
75  };
76  };
77  u32 api_client_index;
78  u32 api_context;
79  u64 *options;
81 
82  /* Used for redirects */
83  void *mp;
85 
86 typedef struct _vnet_disconnect_args_t
87 {
88  u64 handle;
89  u32 api_client_index;
91 
92 /* Bind / connect options */
93 typedef enum
94 {
103 
104 /** Server can handle delegated connect requests from local clients */
105 #define SESSION_OPTIONS_FLAGS_USE_FIFO (1<<0)
106 
107 /** Server wants vpp to add segments when out of memory for fifos */
108 #define SESSION_OPTIONS_FLAGS_ADD_SEGMENT (1<<1)
109 
110 #define VNET_CONNECT_REDIRECTED 123
111 
113 int vnet_unbind_uri (char *uri, u32 api_client_index);
115 int vnet_disconnect_session (u32 session_index, u32 thread_index);
116 
121 
122 int
123 api_parse_session_handle (u64 handle, u32 * session_index,
124  u32 * thread_index);
125 
126 #endif /* __included_uri_h__ */
127 
128 /*
129  * fd.io coding-style-patch-verification: ON
130  *
131  * Local Variables:
132  * eval: (c-set-style "gnu")
133  * End:
134  */
int vnet_unbind_uri(char *uri, u32 api_client_index)
a
Definition: bitmap.h:516
struct _vnet_connect_args vnet_connect_args_t
int vnet_bind(vnet_bind_args_t *a)
struct _vnet_disconnect_args_t vnet_disconnect_args_t
struct _stream_session_cb_vft session_cb_vft_t
struct _vnet_unbind_args_t vnet_unbind_args_t
unsigned long u64
Definition: types.h:89
int api_parse_session_handle(u64 handle, u32 *session_index, u32 *thread_index)
static session_cb_vft_t session_cb_vft
Definition: session_api.c:463
enum _session_api_proto session_api_proto_t
int vnet_disconnect(vnet_disconnect_args_t *a)
int vnet_bind_uri(vnet_bind_args_t *)
session_options_index_t
unsigned int u32
Definition: types.h:88
int vnet_connect(vnet_connect_args_t *a)
int vnet_connect_uri(vnet_connect_args_t *a)
struct _transport_endpoint transport_endpoint_t
int vnet_disconnect_session(u32 session_index, u32 thread_index)
struct _vnet_bind_args_t vnet_bind_args_t
int vnet_unbind(vnet_unbind_args_t *a)