|
@@ -220,15 +220,18 @@ static param_export_t params[] = {
|
|
|
* Module interface
|
|
|
*/
|
|
|
struct module_exports exports = {
|
|
|
- "tls",
|
|
|
- cmds, /* Exported functions */
|
|
|
- tls_rpc, /* RPC methods */
|
|
|
- params, /* Exported parameters */
|
|
|
- mod_init, /* module initialization function */
|
|
|
- 0, /* response function*/
|
|
|
- destroy, /* destroy function */
|
|
|
- 0, /* cancel function */
|
|
|
- mod_child /* per-child init function */
|
|
|
+ "tlsops",
|
|
|
+ DEFAULT_DLFLAGS, /* dlopen flags */
|
|
|
+ cmds, /* Exported functions */
|
|
|
+ params, /* Exported parameters */
|
|
|
+ 0, /* exported statistics */
|
|
|
+ 0, /* exported MI functions */
|
|
|
+ tls_pv, /* exported pseudo-variables */
|
|
|
+ 0, /* extra processes */
|
|
|
+ mod_init, /* module initialization function */
|
|
|
+ 0, /* response function */
|
|
|
+ destroy, /* destroy function */
|
|
|
+ mod_child /* child initialization function */
|
|
|
};
|
|
|
|
|
|
|