FD.io VPP  v18.10-32-g1161dda
Vector Packet Processing
interface_cmds.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 "vom/interface_cmds.hpp"
17 #include "vom/cmd.hpp"
18 
24 
25 namespace VOM {
26 namespace interface_cmds {
28  const std::string& name)
29  : create_cmd(item, name)
30 {
31 }
32 
33 rc_t
35 {
36  msg_t req(con.ctx(), std::ref(*this));
37 
38  VAPI_CALL(req.execute());
39 
40  wait();
41 
42  if (m_hw_item.rc() == rc_t::OK) {
44  }
45 
46  return rc_t::OK;
47 }
48 std::string
50 {
51  std::ostringstream s;
52  s << "loopback-itf-create: " << m_hw_item.to_string() << " name:" << m_name;
53 
54  return (s.str());
55 }
56 
58  const std::string& name)
59  : create_cmd(item, name)
60 {
61 }
62 
63 rc_t
65 {
66  msg_t req(con.ctx(), std::ref(*this));
67 
68  auto& payload = req.get_request().get_payload();
69 
70  payload.use_random_hw_addr = 1;
71  memset(payload.host_if_name, 0, sizeof(payload.host_if_name));
72  memcpy(payload.host_if_name, m_name.c_str(),
73  std::min(m_name.length(), sizeof(payload.host_if_name)));
74 
75  VAPI_CALL(req.execute());
76 
77  wait();
78 
79  if (m_hw_item.rc() == rc_t::OK) {
81  }
82 
83  return rc_t::OK;
84 }
85 std::string
87 {
88  std::ostringstream s;
89  s << "af-packet-itf-create: " << m_hw_item.to_string() << " name:" << m_name;
90 
91  return (s.str());
92 }
93 
95  const std::string& name,
96  const std::string& tag)
97  : create_cmd(item, name)
98  , m_tag(tag)
99 {
100 }
101 
102 rc_t
104 {
105  msg_t req(con.ctx(), std::ref(*this));
106 
107  auto& payload = req.get_request().get_payload();
108  memset(payload.sock_filename, 0, sizeof(payload.sock_filename));
109  memcpy(payload.sock_filename, m_name.c_str(),
110  std::min(m_name.length(), sizeof(payload.sock_filename)));
111  memset(payload.tag, 0, sizeof(payload.tag));
112 
113  if (!m_tag.empty())
114  memcpy(payload.tag, m_tag.c_str(),
115  std::min(m_tag.length(), sizeof(payload.tag)));
116 
117  payload.is_server = 0;
118  payload.use_custom_mac = 0;
119  payload.renumber = 0;
120 
121  VAPI_CALL(req.execute());
122 
123  wait();
124 
125  if (m_hw_item.rc() == rc_t::OK) {
127  }
128 
129  return rc_t::OK;
130 }
131 
132 std::string
134 {
135  std::ostringstream s;
136  s << "vhost-intf-create: " << m_hw_item.to_string() << " name:" << m_name
137  << " tag:" << m_tag;
138 
139  return (s.str());
140 }
141 
143  : delete_cmd(item)
144 {
145 }
146 
147 rc_t
149 {
150  msg_t req(con.ctx(), std::ref(*this));
151 
152  auto& payload = req.get_request().get_payload();
153  payload.sw_if_index = m_hw_item.data().value();
154 
155  VAPI_CALL(req.execute());
156 
157  wait();
159 
161  return rc_t::OK;
162 }
163 
164 std::string
166 {
167  std::ostringstream s;
168  s << "loopback-itf-delete: " << m_hw_item.to_string();
169 
170  return (s.str());
171 }
172 
174  const std::string& name)
175  : delete_cmd(item, name)
176 {
177 }
178 
179 rc_t
181 {
182  msg_t req(con.ctx(), std::ref(*this));
183 
184  auto& payload = req.get_request().get_payload();
185  memset(payload.host_if_name, 0, sizeof(payload.host_if_name));
186  memcpy(payload.host_if_name, m_name.c_str(),
187  std::min(m_name.length(), sizeof(payload.host_if_name)));
188 
189  VAPI_CALL(req.execute());
190 
191  wait();
193 
195  return rc_t::OK;
196 }
197 std::string
199 {
200  std::ostringstream s;
201  s << "af_packet-itf-delete: " << m_hw_item.to_string();
202 
203  return (s.str());
204 }
205 
207  const std::string& name)
208  : delete_cmd(item, name)
209 {
210 }
211 
212 rc_t
214 {
215  msg_t req(con.ctx(), std::ref(*this));
216 
217  auto& payload = req.get_request().get_payload();
218  payload.sw_if_index = m_hw_item.data().value();
219 
220  VAPI_CALL(req.execute());
221 
222  wait();
224 
225  return rc_t::OK;
226 }
227 std::string
229 {
230  std::ostringstream s;
231  s << "vhost-itf-delete: " << m_hw_item.to_string() << " name:" << m_name;
232 
233  return (s.str());
234 }
235 
237  const HW::item<handle_t>& hdl)
238  : rpc_cmd(state)
239  , m_hdl(hdl)
240 {
241 }
242 
243 bool
245 {
246  return ((m_hdl == other.m_hdl) && (m_hw_item == other.m_hw_item));
247 }
248 
249 rc_t
251 {
252  msg_t req(con.ctx(), std::ref(*this));
253 
254  auto& payload = req.get_request().get_payload();
255  payload.sw_if_index = m_hdl.data().value();
256  payload.admin_up_down = m_hw_item.data().value();
257 
258  VAPI_CALL(req.execute());
259 
260  return (wait());
261 }
262 
263 std::string
265 {
266  std::ostringstream s;
267  s << "itf-state-change: " << m_hw_item.to_string()
268  << " hdl:" << m_hdl.to_string();
269  return (s.str());
270 }
271 
273  const l3_proto_t& proto,
274  const HW::item<handle_t>& hdl)
275  : rpc_cmd(table)
276  , m_hdl(hdl)
277  , m_proto(proto)
278 {
279 }
280 
281 bool
283 {
284  return ((m_hdl == other.m_hdl) && (m_proto == other.m_proto) &&
285  (m_hw_item == other.m_hw_item));
286 }
287 
288 rc_t
290 {
291  msg_t req(con.ctx(), std::ref(*this));
292 
293  auto& payload = req.get_request().get_payload();
294  payload.sw_if_index = m_hdl.data().value();
295  payload.is_ipv6 = m_proto.is_ipv6();
296  payload.vrf_id = m_hw_item.data();
297 
298  VAPI_CALL(req.execute());
299 
300  return (wait());
301 }
302 
303 std::string
305 {
306  std::ostringstream s;
307  s << "itf-set-table: " << m_hw_item.to_string()
308  << " proto:" << m_proto.to_string() << " hdl:" << m_hdl.to_string();
309  return (s.str());
310 }
311 
313  const HW::item<handle_t>& hdl)
314  : rpc_cmd(mac)
315  , m_hdl(hdl)
316 {
317 }
318 
319 bool
321 {
322  return ((m_hdl == other.m_hdl) && (m_hw_item == other.m_hw_item));
323 }
324 
325 rc_t
327 {
328  msg_t req(con.ctx(), std::ref(*this));
329 
330  auto& payload = req.get_request().get_payload();
331  payload.sw_if_index = m_hdl.data().value();
332  m_hw_item.data().to_mac().to_bytes(payload.mac_address,
333  sizeof(payload.mac_address));
334 
335  VAPI_CALL(req.execute());
336 
337  return (wait());
338 }
339 
340 std::string
342 {
343  std::ostringstream s;
344  s << "itf-set-mac: " << m_hw_item.to_string() << " hdl:" << m_hdl.to_string();
345  return (s.str());
346 }
347 
350  const handle_t& hdl,
351  bool enable)
352  : rpc_cmd(item)
353  , m_hdl(hdl)
354  , m_enable(enable)
355 {
356 }
357 
358 bool
360  const collect_detail_stats_change_cmd& other) const
361 {
362  return ((m_hdl == other.m_hdl) && (m_hw_item == other.m_hw_item) &&
363  (m_enable == other.m_enable));
364 }
365 
366 rc_t
368 {
369  msg_t req(con.ctx(), std::ref(*this));
370 
371  auto& payload = req.get_request().get_payload();
372  payload.sw_if_index = m_hdl.value();
373  payload.enable_disable = m_enable;
374 
375  VAPI_CALL(req.execute());
376 
377  return (wait());
378 }
379 
380 std::string
382 {
383  std::ostringstream s;
384  s << "itf-stats: " << m_hw_item.to_string() << " hdl:" << m_hdl.to_string();
385  return (s.str());
386 }
387 
389  : event_cmd(el.status())
390  , m_listener(el)
391 {
392 }
393 
394 bool
396 {
397  return (true);
398 }
399 
400 rc_t
402 {
403  /*
404  * First set the call back to handle the interface events
405  */
406  m_reg.reset(new reg_t(con.ctx(), std::ref(*(static_cast<event_cmd*>(this)))));
407 
408  /*
409  * then send the request to enable them
410  */
411  msg_t req(con.ctx(), std::ref(*(static_cast<rpc_cmd*>(this))));
412 
413  auto& payload = req.get_request().get_payload();
414  payload.enable_disable = 1;
415  payload.pid = getpid();
416 
417  VAPI_CALL(req.execute());
418 
419  wait();
420 
421  return (rc_t::OK);
422 }
423 
424 void
426 {
427  /*
428  * disable interface events.
429  */
430  msg_t req(con.ctx(), std::ref(*(static_cast<rpc_cmd*>(this))));
431 
432  auto& payload = req.get_request().get_payload();
433  payload.enable_disable = 0;
434  payload.pid = getpid();
435 
436  VAPI_CALL(req.execute());
437 
438  wait();
439 }
440 
441 void
443 {
444  m_listener.handle_interface_event(this);
445 }
446 
447 std::string
449 {
450  return ("itf-events");
451 }
452 
453 /**
454  * Interface statistics
455  */
457  const handle_t& handle)
458  : event_cmd(el.status())
459  , m_listener(el)
460  , m_swifindex(handle)
461 {
462 }
463 
464 bool
466 {
467  return (true);
468 }
469 
470 rc_t
472 {
473  /*
474  * First set the call back to handle the interface stats
475  */
476  m_reg.reset(new reg_t(con.ctx(), std::ref(*(static_cast<event_cmd*>(this)))));
477 
478  /*
479  * then send the request to enable them
480  */
481  msg_t req(con.ctx(), 1, std::ref(*(static_cast<rpc_cmd*>(this))));
482 
483  auto& payload = req.get_request().get_payload();
484  payload.enable_disable = 1;
485  payload.pid = getpid();
486  payload.num = 1;
487 
488  payload.sw_ifs[0] = m_swifindex.value();
489 
490  VAPI_CALL(req.execute());
491 
492  wait();
493 
494  return (rc_t::OK);
495 }
496 
497 void
499 {
500  /*
501  * disable interface stats.
502  */
503  msg_t req(con.ctx(), 1, std::ref(*(static_cast<rpc_cmd*>(this))));
504 
505  auto& payload = req.get_request().get_payload();
506  payload.enable_disable = 0;
507  payload.pid = getpid();
508  payload.num = 1;
509  payload.sw_ifs[0] = m_swifindex.value();
510 
511  VAPI_CALL(req.execute());
512 
513  wait();
514 }
515 
518 {
519  return m_listener;
520 }
521 
522 void
524 {
525  m_listener.status().set(rc);
526 }
527 
528 void
530 {
531  m_listener.handle_interface_stat(this);
532 }
533 
534 std::string
536 {
537  std::ostringstream s;
538  s << "itf-stats-enable itf:" << m_swifindex.to_string();
539  return (s.str());
540 }
541 
543  : rpc_cmd(m_res)
544  , m_swifindex(handle)
545 {
546 }
547 
548 bool
550 {
551  return (true);
552 }
553 
554 rc_t
556 {
557  /*
558  * then send the request to enable them
559  */
560  msg_t req(con.ctx(), 1, std::ref(*this));
561 
562  auto& payload = req.get_request().get_payload();
563  payload.enable_disable = 0;
564  payload.pid = getpid();
565  payload.num = 1;
566 
567  payload.sw_ifs[0] = m_swifindex.value();
568 
569  VAPI_CALL(req.execute());
570 
571  wait();
572 
573  return (rc_t::OK);
574 }
575 
576 std::string
578 {
579  std::ostringstream s;
580  s << "itf-stats-disable itf:" << m_swifindex.to_string();
581  return (s.str());
582 }
583 
585 {
586 }
587 
588 bool
589 dump_cmd::operator==(const dump_cmd& other) const
590 {
591  return (true);
592 }
593 
594 rc_t
596 {
597  m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
598 
599  auto& payload = m_dump->get_request().get_payload();
600  payload.name_filter_valid = 0;
601 
602  VAPI_CALL(m_dump->execute());
603 
604  wait();
605 
606  return rc_t::OK;
607 }
608 
609 std::string
611 {
612  return ("itf-dump");
613 }
614 
616 {
617 }
618 
619 bool
621 {
622  return (true);
623 }
624 
625 rc_t
627 {
628  m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
629 
630  VAPI_CALL(m_dump->execute());
631 
632  wait();
633 
634  return rc_t::OK;
635 }
636 
637 std::string
639 {
640  return ("vhost-itf-dump");
641 }
642 
643 bool
645 {
646  return (true);
647 }
648 
649 rc_t
651 {
652  m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
653 
654  VAPI_CALL(m_dump->execute());
655 
656  wait();
657 
658  return rc_t::OK;
659 }
660 
661 std::string
663 {
664  return ("af-packet-itf-dump");
665 }
666 
668  : rpc_cmd(item)
669  , m_name(name)
670 {
671 }
672 
673 rc_t
675 {
676  msg_t req(con.ctx(), std::ref(*this));
677 
678  auto& payload = req.get_request().get_payload();
679  payload.is_add = 1;
680  payload.sw_if_index = m_hw_item.data().value();
681  memset(payload.tag, 0, sizeof(payload.tag));
682  memcpy(payload.tag, m_name.c_str(), m_name.length());
683 
684  VAPI_CALL(req.execute());
685 
686  return (wait());
687 }
688 std::string
690 {
691  std::ostringstream s;
692  s << "itf-set-tag: " << m_hw_item.to_string() << " name:" << m_name;
693 
694  return (s.str());
695 }
696 
697 bool
699 {
700  return ((m_name == o.m_name) && (m_hw_item.data() == o.m_hw_item.data()));
701 }
702 }; // namespace interface_cmds
703 }; // namespace VOM
704 
705 /*
706  * fd.io coding-style-patch-verification: ON
707  *
708  * Local Variables:
709  * eval: (c-set-style "mozilla")
710  * End:
711  */
bool operator==(const set_tag &i) const
Comparison operator - only used for UT.
rc_t issue(connection &con)
Issue the command to VPP/HW.
std::string to_string() const
convert to string format for debug purposes
static const rc_t NOOP
The HW write/update action was/has not been attempted.
Definition: types.hpp:99
void retire(connection &con)
Retires the command - unsubscribe from the events.
delete_cmd(HW::item< handle_t > &item, const std::string &name)
Definition: interface.hpp:353
bool operator==(const af_packet_dump_cmd &i) const
Comparison operator - only used for UT.
bool operator==(const set_mac_cmd &i) const
Comparison operator - only used for UT.
A command class represents our desire to recieve interface stats.
vhost_create_cmd(HW::item< handle_t > &item, const std::string &name, const std::string &tag)
DEFINE_VAPI_MSG_IDS_AF_PACKET_API_JSON
int value() const
Return the value of the enum - same as integer conversion.
Definition: enum_base.hpp:67
std::string to_string() const
convert to string format for debug purposes
std::string to_string() const
convert to string format for debug purposes
void remove_interface()
remove the deleted interface from the DB
Definition: interface.hpp:386
uint32_t value() const
get the value of the handle
Definition: types.cpp:93
set_tag(HW::item< handle_t > &item, const std::string &name)
Constructor taking the HW::item to update.
rc_t issue(connection &con)
Issue the command to VPP/HW.
A cmd class that Dumps all the Vpp interfaces.
std::string to_string() const
convert to string format for debug purposes
collect_detail_stats_change_cmd(HW::item< interface::stats_type_t > &item, const handle_t &h, bool enable)
Constructor taking the HW::item to update and the handle of the interface.
bool operator==(const set_table_cmd &i) const
Comparison operator - only used for UT.
void notify()
Called when it&#39;s time to poke the listeners.
rc_t issue(connection &con)
Issue the command to VPP/HW.
stats_disable_cmd(const handle_t &handle)
Constructor taking the listner to notify.
A command class to set tag on interfaces.
Error codes that VPP will return during a HW write.
Definition: types.hpp:84
std::string to_string() const
convert to string format for debug purposes
An L3 protocol can be used to construct a prefix that is used to match packets are part of a route...
Definition: prefix.hpp:52
set_mac_cmd(HW::item< l2_address_t > &item, const HW::item< handle_t > &h)
Constructor taking the HW::item to update and the handle of the interface.
create_cmd(HW::item< handle_t > &item, const std::string &name)
Definition: interface.hpp:287
virtual void handle_interface_event(interface_cmds::events_cmd *cmd)=0
Virtual function called on the listener when the command has data ready to process.
A command class that enables detailed stats collection on an interface.
std::string to_string() const
convert to string format for debug purposes
std::string to_string() const
convert to string format for debug purposes
std::string to_string() const
convert to string format for debug purposes
Definition: hw.hpp:160
rc_t wait()
Wait on the commands promise.
Definition: rpc_cmd.hpp:80
T & data()
Return the data read/written.
Definition: hw.hpp:108
memset(h->entries, 0, sizeof(h->entries[0])*entries)
rc_t issue(connection &con)
Issue the command to VPP/HW.
DEFINE_VAPI_MSG_IDS_VPE_API_JSON
std::string to_string() const
convert to string format for debug purposes
Definition: types.cpp:69
rc_t issue(connection &con)
Issue the command to VPP/HW.
vhost_vring_state_t state
Definition: vhost_user.h:120
std::string to_string() const
convert to string format for debug purposes
rc_t issue(connection &con)
Issue the command to VPP/HW.
A command class that changes the MAC address on an interface.
rc_t rc() const
Get the HW return code.
Definition: hw.hpp:118
const std::string & m_name
The name of the interface to be created.
Definition: interface.hpp:343
dump_cmd()
Default Constructor.
A representation of the connection to VPP.
Definition: connection.hpp:33
bool operator==(const events_cmd &i) const
Comparison operator - only used for UT.
set_table_cmd(HW::item< route::table_id_t > &item, const l3_proto_t &proto, const HW::item< handle_t > &h)
Constructor taking the HW::item to update and the name handle of the interface whose table is to chan...
A class that listens to interface Stats.
Definition: interface.hpp:427
DEFINE_VAPI_MSG_IDS_VHOST_USER_API_JSON
std::string to_string() const
convert to string format for debug purposes
std::string to_string() const
convert to string format for debug purposes
rc_t issue(connection &con)
Issue the command to VPP/HW.
std::string to_string() const
convert to string format for debug purposes
state_change_cmd(HW::item< interface::admin_state_t > &s, const HW::item< handle_t > &h)
Constructor taking the HW::item to update and the name handle of the interface whose state is to chan...
rc_t issue(connection &con)
Issue the command to VPP/HW.
rc_t issue(connection &con)
Issue the command to VPP/HW.
rc_t issue(connection &con)
Issue the command to VPP/HW.
A class that listens to interface Events.
Definition: interface.hpp:398
A base class for all RPC commands to VPP.
Definition: rpc_cmd.hpp:38
af_packet_delete_cmd(HW::item< handle_t > &item, const std::string &name)
Constructor taking the HW::item to update and the name of the interface to delete.
u8 name[64]
Definition: memclnt.api:151
bool operator==(const stats_enable_cmd &i) const
Comparison operator - only used for UT.
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
Definition: types.hpp:29
A cmd class that changes the admin state.
std::string to_string() const
convert to string format for debug purposes
vhost_dump_cmd()
Default Constructor.
std::string to_string() const
convert to string format for debug purposes
af_packet_create_cmd(HW::item< handle_t > &item, const std::string &name)
Constructor taking the HW::item to update and the name of the interface to create.
A command class that binds an interface to an L3 table.
bool operator==(const dump_cmd &i) const
Comparison operator - only used for UT.
A command class represents our desire to recieve interface events.
stats_enable_cmd(interface::stat_listener &el, const handle_t &handle)
Constructor taking the listner to notify.
DEFINE_VAPI_MSG_IDS_STATS_API_JSON
std::unique_ptr< vapi::Event_registration< vapi::Sw_interface_event > > m_reg
The VAPI event registration.
Definition: event_cmd.hpp:100
A cmd class that Dumps all the Vpp Interfaces.
HW::item< bool > & status()
Return the HW::item representing the status.
Definition: interface.cpp:118
rc_t issue(connection &con)
Issue the command to VPP/HW.
std::string to_string() const
convert to string format for debug purposes
A type declaration of an interface handle in VPP.
Definition: types.hpp:228
vapi::Event_registration< vapi::Sw_interface_event > reg_t
Definition: event_cmd.hpp:59
rc_t issue(connection &con)
Issue the command to VPP/HW.
bool operator==(const vhost_dump_cmd &i) const
Comparison operator - only used for UT.
rc_t issue(connection &con)
Issue the command to VPP/HW.
static const rc_t OK
The HW write was successfull.
Definition: types.hpp:104
bool operator==(const state_change_cmd &i) const
Comparison operator - only used for UT.
void notify()
Called when it&#39;s time to poke the listeners.
std::string to_string() const
convert to string format for debug purposes
const std::string m_name
The name of the interface to be created.
Definition: interface.hpp:392
loopback_delete_cmd(HW::item< handle_t > &item)
Constructor taking the HW::item to update.
A command class represents our desire to recieve interface stats.
vapi::Connection & ctx()
Retrun the VAPI context the commands will use.
Definition: connection.cpp:49
void to_bytes(uint8_t *array, uint8_t len) const
Convert to byte array.
Definition: types.cpp:140
rc_t issue(connection &con)
Issue the command to VPP/HW.
void insert_interface()
add the created interface to the DB
Definition: interface.hpp:318
The VPP Object Model (VOM) library.
Definition: acl_binding.cpp:19
DEFINE_VAPI_MSG_IDS_INTERFACE_API_JSON
void set(const rc_t &rc)
(re)set status
rc_t issue(connection &con)
Issue the command to VPP/HW.
void set(const rc_t &rc)
Set the HW return code - should only be called from the family of Command objects.
Definition: hw.hpp:124
vhost_delete_cmd(HW::item< handle_t > &item, const std::string &name)
virtual void handle_interface_stat(interface_cmds::stats_enable_cmd *cmd)=0
Virtual function called on the listener when the command has data ready to process.
interface::stat_listener & listener() const
get listener
An Event command base class.
Definition: event_cmd.hpp:39
const std::string & to_string() const
convert to string format for debug purposes
Definition: enum_base.hpp:36
void retire(connection &con)
Retires the command - unsubscribe from the stats.
rc_t issue(connection &con)
Issue the command to VPP/HW.
events_cmd(interface::event_listener &el)
Constructor taking the listner to notify.
std::string to_string() const
convert to string format for debug purposes
A cmd class that Dumps all the Vpp interfaces.
std::string to_string() const
convert to string format for debug purposes
mac_address_t to_mac() const
MAC address conversion.
Definition: types.cpp:216
loopback_create_cmd(HW::item< handle_t > &item, const std::string &name)
Constructor taking the HW::item to update and the name of the interface to create.
bool operator==(const stats_disable_cmd &i) const
Comparison operator - only used for UT.
bool operator==(const collect_detail_stats_change_cmd &i) const
Comparison operator - only used for UT.
vl_api_mac_address_t mac
Definition: gbp.api:31
HW::item< handle_t > & m_hw_item
A reference to an object&#39;s HW::item that the command will update.
Definition: rpc_cmd.hpp:132
bool is_ipv6()
Definition: prefix.cpp:35
HW::item< handle_t > & item()
return the HW item the command updates
Definition: rpc_cmd.hpp:64
rc_t issue(connection &con)
Issue the command to VPP/HW.
vapi::Create_loopback msg_t
convenient typedef
Definition: rpc_cmd.hpp:44