TR181-XPON
1.4.0
TR-181 PON manager.
|
#include <stdbool.h>
Go to the source code of this file.
Functions | |
bool | mod_module_mgmt_init (bool *module_error) |
const char * | mod_get_vendor_module_loaded (void) |
void | mod_module_mgmt_cleanup (void) |
Functionality to load vendor module and register namespaces.
The namespaces have functions which can be called by the vendor module.
Definition in file module_mgmt.h.
const char* mod_get_vendor_module_loaded | ( | void | ) |
Return the name of the vendor module the plugin loaded at startup.
Definition at line 326 of file module_mgmt.c.
void mod_module_mgmt_cleanup | ( | void | ) |
Clean up the module_mgmt part of this plugin.
The function does the reverse of mod_module_mgmt_init():
The plugin must call this function once when stopping.
Definition at line 340 of file module_mgmt.c.
bool mod_module_mgmt_init | ( | bool * | module_error | ) |
Initialize the module_mgmt part of this plugin.
The function:
The plugin must call this function once at startup.
[in,out] | module_error | the function sets it to true if it encounters an error regarding (the loading of) the vendor module |
Definition at line 299 of file module_mgmt.c.