summaryrefslogtreecommitdiffstats
path: root/src/vnet/adj/adj.c
AgeCommit message (Expand)AuthorFilesLines
2017-04-11Remove usued, redundant and deprecated code from lookup.hNeale Ranns1-3/+0
2017-04-07MPLS McastNeale Ranns1-2/+11
2017-04-06BFD-FIB interactionsNeale Ranns1-4/+47
2017-04-03Adjacency layout change and move to vnet/adjNeale Ranns1-2/+1
2017-03-29Mtrie optimisationsNeale Ranns1-12/+0
2017-03-27Mcast rewrite no memcpyNeale Ranns1-1/+1
2017-03-17Cache a 'has-features' flag on the adjacency for faster access. Reclaim the n...Neale Ranns1-10/+72
2017-03-07make per-adj counters configurableNeale Ranns1-28/+93
2017-03-03Changing the IP table for an interface is an error if the interface already h...Neale Ranns1-22/+0
2017-01-27IP Multicast FIB (mfib)Neale Ranns1-2/+9
2017-01-25[re]Enable per-Adjacency/neighbour countersNeale Ranns1-0/+4
2016-12-28Reorganize source tree to use single autotools instanceDamjan Marion1-0/+454
*/ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
#!/usr/bin/env python
"""
  UDP encap objects
"""

from vpp_object import *
from socket import inet_pton, inet_ntop, AF_INET, AF_INET6


def find_udp_encap(test, id):
    encaps = test.vapi.udp_encap_dump()
    for e in encaps:
        if id == e.id:
            return True
    return False


class VppUdpEncap(VppObject):

    def __init__(self,
                 test,
                 id,
                 src_ip,
                 dst_ip,
                 src_port,
                 dst_port,
                 table_id=0,
                 is_ip6=0):
        self._test = test
        self.id = id
        self.table_id = table_id
        self.is_ip6 = is_ip6
        self.src_ip_s = src_ip
        self.dst_ip_s = dst_ip
        if is_ip6:
            self.src_ip = inet_pton(AF_INET6, src_ip)
            self.dst_ip = inet_pton(AF_INET6, dst_ip)
        else:
            self.src_ip = inet_pton(AF_INET, src_ip)
            self.dst_ip = inet_pton(AF_INET, dst_ip)
        self.src_port = src_port
        self.dst_port = dst_port

    def add_vpp_config(self):
        self._test.vapi.udp_encap_add_del(
            self.id,
            self.src_ip,
            self.dst_ip,
            self.src_port,
            self.dst_port,
            self.table_id,
            is_ip6=self.is_ip6,
            is_add=1)
        self._test.registry.register(self, self._test.logger)

    def remove_vpp_config(self):
        self._test.vapi.udp_encap_add_del(
            self.id,
            self.src_ip,
            self.dst_ip,
            self.src_port,
            self.dst_port,
            self.table_id,
            is_ip6=self.is_ip6,
            is_add=0)

    def query_vpp_config(self):
        return find_udp_encap(self._test, self.id)

    def __str__(self):
        return self.object_id()

    def object_id(self):
        return ("udp-encap-%d" % self.id)