aboutsummaryrefslogtreecommitdiffstats
path: root/docs/gettingstarted/developers/index.rst
blob: 76feb057552fea30d998a693aaccff627564fb56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.. _gstarteddevel:

##########
Developers
##########

The Developers section covers the following areas:

* Building VPP
* Describes the components of the four VPP layers
* How to Create, Add, Enable/Disable features
* Discusses different aspects of Bounded-index Extensible Hashing (bihash)


.. toctree::
   :maxdepth: 2

   building
   running_vpp
   gdb_examples
   gitreview
   softwarearchitecture
   infrastructure
   vlib
   plugins
   vnet
   featurearcs
   bihash
   vpp_api_module
   binary_api_support
   sample_plugin
an>.id \ and ue.src_ip == str(e.udp_encap.src_ip) \ and ue.dst_ip == str(e.udp_encap.dst_ip) \ and e.udp_encap.dst_port == ue.dst_port \ and e.udp_encap.src_port == ue.src_port: return True return False class VppUdpEncap(VppObject): def __init__(self, test, src_ip, dst_ip, src_port, dst_port, table_id=0): self._test = test self.table_id = table_id self.src_ip_s = src_ip self.dst_ip_s = dst_ip self.src_ip = src_ip self.dst_ip = dst_ip self.src_port = src_port self.dst_port = dst_port def add_vpp_config(self): r = self._test.vapi.udp_encap_add( self.src_ip, self.dst_ip, self.src_port, self.dst_port, self.table_id) self.id = r.id self._test.registry.register(self, self._test.logger) def remove_vpp_config(self): self._test.vapi.udp_encap_del(self.id) def query_vpp_config(self): return find_udp_encap(self._test, self) def object_id(self): return ("udp-encap-%d" % self.id) def get_stats(self): c = self._test.statistics.get_counter("/net/udp-encap") return c[0][self.id]