I am trying to use ip4_reass_node
for that
static vlib_node_registration_t ip4_reass_node;
changed to
extern vlib_node_registration_t ip4_reass_node;
Also
VLIB_REGISTER_NODE (ip4_reass_node, static) = {
to
VLIB_REGISTER_NODE (ip4_reass_node) = {
Also
Enabled the feature on interface
ret = vnet_feature_enable_disable ("ip4-unicast", "ip4-reassembly",
sgi_sw_if_index, 1, 0, 0);
However in my plugin when I am using ip4_reass_node it is giving error while
loading -> undefined symbol: ip4_reass_node
Any input or help would be helpful
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#13228): https://lists.fd.io/g/vpp-dev/message/13228
Mute This Topic: https://lists.fd.io/mt/31952526/21656
Group Owner: [email protected]
Unsubscribe: https://lists.fd.io/g/vpp-dev/unsub [[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-