aboutsummaryrefslogtreecommitdiffstats
path: root/docs/gettingstarted/developers/plugins.rst
blob: 09db1d3459f1cabc3bd214a14321d99dde2c6094 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.. _dplugins:

Plugins
=======

vlib implements a straightforward plug-in DLL mechanism. VLIB client
applications specify a directory to search for plug-in .DLLs, and a name
filter to apply (if desired). VLIB needs to load plug-ins very early.

Once loaded, the plug-in DLL mechanism uses dlsym to find and verify a
vlib\_plugin\_registration data structure in the newly-loaded plug-in.

For more on plugins please refer to :ref:`add_plugin`.