myMPD
Internal API documentation
Loading...
Searching...
No Matches
webserver.h
Go to the documentation of this file.
1/*
2 SPDX-License-Identifier: GPL-3.0-or-later
3 myMPD (c) 2018-2026 Juergen Mang <mail@jcgames.de>
4 https://github.com/jcorporation/mympd
5*/
6
10
11#ifndef MYMPD_WEB_SERVER_H
12#define MYMPD_WEB_SERVER_H
13
16
17#include <stdbool.h>
18
19void *webserver_loop(void *arg_mgr);
20struct mg_mgr *webserver_init_mgr(struct t_config *config, struct t_mg_user_data *mg_user_data);
21void webserver_free(struct mg_mgr *mgr);
22
23#endif
Central myMPD configuration definitions.
Webserver utility functions.
Definition config_def.h:22
Definition mg_user_data.h:39
struct mg_mgr * webserver_init_mgr(struct t_config *config, struct t_mg_user_data *mg_user_data)
Definition webserver.c:58
void * webserver_loop(void *arg_mgr)
Definition webserver.c:136
void webserver_free(struct mg_mgr *mgr)
Definition webserver.c:122