FD.io VPP
v21.06-3-gbb25fbf28
Vector Packet Processing
connection.cpp
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2017 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
#include <
vapi/vapi.hpp
>
17
18
#include "
vom/connection.hpp
"
19
20
namespace
VOM
{
21
connection::connection
()
22
: m_vapi_conn(
new
vapi
::Connection())
23
, m_app_name(
"VOM"
)
24
{
25
}
26
27
connection::~connection
()
28
{
29
}
30
31
void
32
connection::disconnect
()
33
{
34
m_vapi_conn->disconnect();
35
}
36
37
int
38
connection::connect
()
39
{
40
vapi_error_e
rv
;
41
42
rv
= m_vapi_conn->connect(m_app_name.c_str(),
43
NULL,
// m_api_prefix.c_str(),
44
128, 128);
45
return
rv
;
46
}
47
48
vapi::Connection
&
49
connection::ctx
()
50
{
51
return
(*m_vapi_conn);
52
}
53
}
54
55
/*
56
* fd.io coding-style-patch-verification: OFF
57
*
58
* Local Variables:
59
* eval: (c-set-style "mozilla")
60
* End:
61
*/
vapi_error_e
vapi_error_e
Definition:
vapi_common.h:25
VOM
The VPP Object Model (VOM) library.
Definition:
acl_binding.cpp:19
vapi::Connection
Class representing a connection to VPP.
Definition:
vapi.hpp:153
VOM::connection::connection
connection()
Constructor.
Definition:
connection.cpp:21
VOM::connection::disconnect
void disconnect()
Blocking disconnect.
Definition:
connection.cpp:32
VOM::connection::connect
int connect()
Blocking [re]connect call - always eventually succeeds, or the universe expires.
Definition:
connection.cpp:38
VOM::connection::~connection
~connection()
Destructor.
Definition:
connection.cpp:27
connection.hpp
VOM::connection::ctx
vapi::Connection & ctx()
Retrun the VAPI context the commands will use.
Definition:
connection.cpp:49
new
vl_api_cnat_endpoint_t new
Definition:
cnat.api:119
vapi.hpp
C++ VPP API.
vapi
Forward declarations.
Definition:
vapi.hpp:44
rv
int __clib_unused rv
Definition:
application.c:491
extras
deprecated
vom
vom
connection.cpp
Generated on Sat Jan 8 2022 10:03:17 for FD.io VPP by
1.8.17