17 lines
388 B
C
17 lines
388 B
C
#ifndef CONTROLLER_CONNECTIONS_H
|
|
#define CONTROLLER_CONNECTIONS_H
|
|
|
|
#include <mongoose.h>
|
|
|
|
struct mg_connection*
|
|
connection_discovery_bind(struct mg_mgr *mgr);
|
|
|
|
struct mg_connection*
|
|
connection_command_bind(struct mg_mgr *mgr);
|
|
|
|
struct mg_connection*
|
|
connection_mqtt_connect(struct mg_mgr *mgr);
|
|
|
|
extern struct mg_connection *global_connection_mqtt;
|
|
|
|
#endif /* CONTROLLER_CONNECTIONS_H */
|