diff options
Diffstat (limited to '')
-rw-r--r-- | src/output/HttpdInternal.hxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/output/HttpdInternal.hxx b/src/output/HttpdInternal.hxx index 5c5abd0d5..bcb7b3a55 100644 --- a/src/output/HttpdInternal.hxx +++ b/src/output/HttpdInternal.hxx @@ -34,8 +34,8 @@ #include <forward_list> -#include <stdbool.h> - +struct config_param; +class EventLoop; class ServerSocket; class HttpdClient; @@ -124,6 +124,11 @@ struct HttpdOutput { */ guint clients_max, clients_cnt; + HttpdOutput(EventLoop &_loop); + ~HttpdOutput(); + + bool Configure(const config_param *param, GError **error_r); + bool Bind(GError **error_r); void Unbind(); |