blob: 3d965ea863f6576a3af3eb86d7c158a3b11486f1 [file] [log] [blame]
Neale Ranns812ed392017-10-16 04:20:13 -07001/*
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 "vom/connection.hpp"
17
18namespace VOM {
19connection::connection()
20 : m_app_name("vpp-OM")
21{
22}
23
24connection::~connection()
25{
26 disconnect();
27}
28
29void
30connection::disconnect()
31{
32 m_vapi_conn.disconnect();
33}
34
35void
36connection::connect()
37{
38 vapi_error_e rv;
39
40 do {
41 rv = m_vapi_conn.connect(m_app_name.c_str(),
42 NULL, // m_api_prefix.c_str(),
43 128, 128);
44 } while (VAPI_OK != rv);
45}
46
47vapi::Connection&
48connection::ctx()
49{
50 return (m_vapi_conn);
51}
52}
53
54/*
55 * fd.io coding-style-patch-verification: ON
56 *
57 * Local Variables:
58 * eval: (c-set-style "mozilla")
59 * End:
60 */