diff options
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -45,6 +45,9 @@ extern const hybbx_transport_plugin_t hybbx_plugin_ssh; #ifdef HYBBX_HAVE_PLUGIN_WEBSOCKET extern const hybbx_transport_plugin_t hybbx_plugin_websocket; #endif +#ifdef HYBBX_HAVE_PLUGIN_ENTERTAIN +extern const hybbx_transport_plugin_t hybbx_plugin_entertain; +#endif #ifdef HYBBX_HAVE_PLUGIN_BAYCOM extern const hybbx_transport_plugin_t hybbx_plugin_baycom; #endif @@ -73,6 +76,9 @@ static void register_builtin_plugins(void) #ifdef HYBBX_HAVE_PLUGIN_WEBSOCKET hybbx_registry_register(&hybbx_plugin_websocket); #endif +#ifdef HYBBX_HAVE_PLUGIN_ENTERTAIN + hybbx_registry_register(&hybbx_plugin_entertain); +#endif #ifdef HYBBX_HAVE_PLUGIN_BAYCOM hybbx_registry_register(&hybbx_plugin_baycom); #endif |
