DOC ONLY: clean up plugin documentation
[vpp.git] / docs / gettingstarted / developers / plugins.rst
1 .. _dplugins:
2
3 Plugins
4 =======
5
6 vlib implements a straightforward plug-in DLL mechanism. VLIB client
7 applications specify a directory to search for plug-in .DLLs, and a name
8 filter to apply (if desired). VLIB needs to load plug-ins very early.
9
10 Once loaded, the plug-in DLL mechanism uses dlsym to find and verify a
11 vlib\_plugin\_registration data structure in the newly-loaded plug-in.
12
13 For more on plugins please refer to :ref:`add_plugin`.