aboutsummaryrefslogtreecommitdiffstats
path: root/build-root/scripts/find-plugins-contents
blob: a5a52acf337a4bfeab706c511749cd65169f33d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

rm -f $2

for i in ${1}/plugins/lib64/vpp_plugins/*.so; do
	echo ../${i} /usr/lib/vpp_plugins >> ${2}
done

for i in ${1}/plugins/lib64/vpp_api_test_plugins/*.so; do
	echo ../${i} /usr/lib/vpp_api_test_plugins >> ${2}
done

for i in $(find ${1}/plugins -name *.api.json -type f -print); do
    echo ../${i} /usr/share/vpp/api/ >> ${2}
done
class="cp"> #include <vnet/mpls/packet.h> #include <vnet/dpo/dpo.h> /** * A representation of an MPLS label for imposition in the data-path */ typedef struct classify_dpo_t { dpo_proto_t cd_proto; u32 cd_table_index; /** * Number of locks/users of the label */ u16 cd_locks; } classify_dpo_t; extern index_t classify_dpo_create(dpo_proto_t proto, u32 classify_table_index); extern u8* format_classify_dpo(u8 *s, va_list *args); /* * Encapsulation violation for fast data-path access */ extern classify_dpo_t *classify_dpo_pool; static inline classify_dpo_t * classify_dpo_get (index_t index) { return (pool_elt_at_index(classify_dpo_pool, index)); } extern void classify_dpo_module_init(void); #endif