summaryrefslogtreecommitdiffstats
path: root/build-root/deb
AgeCommit message (Expand)AuthorFilesLines
2017-03-27Python API: Fixup of debian package after cFFI changes.Ole Troan4-15/+8
2017-02-24Fixed QAT device binding and device unbinding when vpp package is removedRadu Nicolau1-1/+1
2017-02-04dpdk: move to uio_pci_genericDamjan Marion2-4/+4
2017-01-20Add dpdk development packagingDamjan Marion3-23/+2
2017-01-04rename vpp python's api debian scriptsGabriel Ganne2-0/+0
2017-01-03deb: fix issues in debian/control, silence some warningsDamjan Marion2-7/+12
2017-01-03vpp-python-api deb packaging - use easy_install to install the python apiroot2-0/+13
2017-01-01Move java,lua api and remaining plugins to src/Damjan Marion2-2/+18
2016-12-20Remove RPATH from binaries before creating .deb and .rpm packagesDamjan Marion2-1/+2
2016-11-17remove reference to Intel with dpdk docsPadraig Connolly1-1/+1
2016-10-29Initial deb packaging of vpp-python-apiEd Warnicke3-1/+9
2016-10-11Rebind kernel drivers on VPP uninstallPeter Ginchev1-0/+21
2016-10-10platform: rewrote vppctl script to include historyPadraig1-1/+1
2016-09-10VPP-367: Peg vpp and vpp-plugins to depend on specific versionsEd Warnicke1-2/+2
2016-07-13Add plugins debian packagingDamjan Marion1-0/+7
2016-06-09VPP-127 Removed spurious use of sudoEd Warnicke1-1/+1
2016-06-08VPP-127: Make rpm/deb provide vpp group to access vpp-apiEd Warnicke1-0/+4
2016-05-04VPP-12: only remove vpp-related files from /dev/shmDave Barach2-4/+4
2016-04-20ubuntu 16.04 build support. Supporting systemd with vpp.service files.Srivatsa Sangli3-2/+16
2016-02-01Add a vpp-dpdk-dev package, enable plugins to use dpdk APIs directlyDave Barach2-8/+9
2016-01-20Rename vpe binary name to avoid collision with latexDamjan Marion3-6/+6
2015-12-16Add missing entries to .gitignoreEd Warnicke1-0/+2
2015-12-08Initial commit of vpp code.v1.0.0Ed Warnicke10-0/+243
_ (ROUTER_ADVERTISEMENTS_RX, "router advertisements received") \ _ (DST_LOOKUP_MISS, "icmp6 dst address lookup misses") \ _ (DEST_UNREACH_SENT, "destination unreachable response sent") \ _ (PACKET_TOO_BIG_SENT, "packet too big response sent") \ _ (TTL_EXPIRE_SENT, "hop limit exceeded response sent") \ _ (PARAM_PROBLEM_SENT, "parameter problem response sent") \ _ (DROP, "error message dropped") \ _ (ALLOC_FAILURE, "buffer allocation failure") typedef enum { #define _(f,s) ICMP6_ERROR_##f, foreach_icmp6_error #undef _ } icmp6_error_t; typedef struct { u8 packet_data[64]; } icmp6_input_trace_t; format_function_t format_icmp6_input_trace; void icmp6_register_type (vlib_main_t * vm, icmp6_type_t type, u32 node_index); void icmp6_error_set_vnet_buffer (vlib_buffer_t * b, u8 type, u8 code, u32 data); extern vlib_node_registration_t ip6_icmp_input_node; #endif /* included_vnet_icmp6_h */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */