Re: [vpp-dev] Calling functions across plugins

2019-02-28 Thread satish . gundu
Thanks Dave for the quick inputs. -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#12402): https://lists.fd.io/g/vpp-dev/message/12402 Mute This Topic: https://lists.fd.io/mt/30164897/21656 Group Owner: vpp-dev+ow...@lists.fd.io Unsubscribe:

Re: [vpp-dev] Calling functions across plugins

2019-02-28 Thread Dave Barach via Lists.Fd.Io
...@gmail.com Sent: Thursday, February 28, 2019 11:10 AM To: vpp-dev@lists.fd.io Subject: [vpp-dev] Calling functions across plugins Hi VPP-Dev, I have two VPP plugins A and B. Plugin-A needs to call function in plugin-B. Currently, we are using dlopen/dlsym to get the function pointer of function-B

[vpp-dev] Calling functions across plugins

2019-02-28 Thread satish . gundu
Hi VPP-Dev, I have two VPP plugins A and B. Plugin-A needs to call function in plugin-B. Currently, we are using dlopen/dlsym to get the function pointer of function-B in function-A and made it working. But is this the correct way to do it in VPP? (or) does VPP have any other standard way of