summaryrefslogtreecommitdiffstats
path: root/src/plugins/nsh
AgeCommit message (Expand)AuthorFilesLines
2020-10-21misc: minimize dependencies on udp.hFlorin Coras1-1/+1
2020-10-07misc: Purge unused pg includesNeale Ranns3-3/+0
2020-09-22lisp: Move to pluginNeale Ranns2-4/+2
2020-08-06misc: harmonize namesDave Barach2-25/+31
2020-05-04fib: midchain adjacency optimisationsNeale Ranns1-1/+0
2020-01-06lb: add FEATURE file for lb/pppoe/gtpu/vxlan-gpe/pppoeHongjun Ni1-0/+14
2019-12-10api: multiple connections per processDave Barach1-1/+1
2019-12-06nsh: use explicit api typesOle Troan1-6/+8
2019-09-20classify: remove includes from classifier header fileDamjan Marion2-0/+2
2019-08-19nsh: rewrite nsh_output_inlineZhiyong Yang1-32/+30
2019-07-09vat: unload unused vat pluginsDave Barach1-2/+3
2019-05-16init / exit function orderingDave Barach1-8/+6
2019-05-03plugins: clean up plugin descriptionsDave Wallace1-1/+1
2019-04-25Remove dummy_interface_tx nodes from l2tp l2xcrw and nshJohn Lo1-9/+0
2019-04-10API: Fix shared memory only action handlers.Ole Troan1-20/+16
2019-03-07Remove local REPLY_MACRO so that socket transport works.Ole Troan1-38/+2
2019-03-01nsh: fix load failureFilip Tehlar5-69/+69
2019-02-26nsh: migrate old MUTIARCH macros to VLIB_NODE_FNFilip Tehlar8-2289/+2438
2018-11-14Remove c-11 memcpy checks from perf-critical codeDave Barach5-30/+31
2018-10-23c11 safe string handling supportDave Barach5-22/+22
2018-10-08Fix coverity issue for NSH pluginHongjun Ni1-69/+70
2018-09-16fix nsh map index error, it will cause vpp appear Segmentation fault when vpp...zhanglimao1-1/+1
2018-09-11VAT: plugin load errorsOle Troan1-2/+3
2018-08-29Add NSH Plugin MaintainersHongjun Ni1-2/+2
2018-08-28Port NSH plugin to VPPHongjun Ni18-0/+6268
class="p">[2] ^ v->key[3] ^ v->key[4]; return clib_xxhash (tmp); #endif } static inline u8 * format_bihash_kvp_40_8 (u8 * s, va_list * args) { clib_bihash_kv_40_8_t *v = va_arg (*args, clib_bihash_kv_40_8_t *); s = format (s, "key %llu %llu %llu %llu %llu value %llu", v->key[0], v->key[1], v->key[2], v->key[3], v->key[4], v->value); return s; } static inline int clib_bihash_key_compare_40_8 (const u64 * a, const u64 * b) { return ((a[0] ^ b[0]) | (a[1] ^ b[1]) | (a[2] ^ b[2]) | (a[3] ^ b[3]) | (a[4] ^ b[4])) == 0; } #undef __included_bihash_template_h__ #include <vppinfra/bihash_template.h> #endif /* __included_bihash_40_8_h__ */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */