blob: c03ef99c172f394b81cb24230d703acb7a716f2b [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
Neale Rannsfd920602017-11-23 12:15:00 -080016#include <vapi/vapi.hpp>
17
Neale Ranns812ed392017-10-16 04:20:13 -070018#include "vom/connection.hpp"
19
20namespace VOM {
21connection::connection()
Neale Rannsfd920602017-11-23 12:15:00 -080022 : m_vapi_conn(new vapi::Connection())
23 , m_app_name("VOM")
Neale Ranns812ed392017-10-16 04:20:13 -070024{
25}
26
27connection::~connection()
28{
Neale Ranns812ed392017-10-16 04:20:13 -070029}
30
31void
32connection::disconnect()
33{
Neale Rannsfd920602017-11-23 12:15:00 -080034 m_vapi_conn->disconnect();
Neale Ranns812ed392017-10-16 04:20:13 -070035}
36
Mohsin Kazmi18e955e2018-01-08 12:58:32 +010037int
Neale Ranns812ed392017-10-16 04:20:13 -070038connection::connect()
39{
40 vapi_error_e rv;
41
Mohsin Kazmi18e955e2018-01-08 12:58:32 +010042 rv = m_vapi_conn->connect(m_app_name.c_str(),
43 NULL, // m_api_prefix.c_str(),
44 128, 128);
45 return rv;
Neale Ranns812ed392017-10-16 04:20:13 -070046}
47
48vapi::Connection&
49connection::ctx()
50{
Neale Rannsfd920602017-11-23 12:15:00 -080051 return (*m_vapi_conn);
Neale Ranns812ed392017-10-16 04:20:13 -070052}
53}
54
55/*
56 * fd.io coding-style-patch-verification: ON
57 *
58 * Local Variables:
59 * eval: (c-set-style "mozilla")
60 * End:
61 */