mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-31 17:43:22 -05:00
21 lines
272 B
C
21 lines
272 B
C
|
|
||
|
#ifndef __HTTPD_RSP_H__
|
||
|
#define __HTTPD_RSP_H__
|
||
|
|
||
|
#include <event.h>
|
||
|
#include <evhttp.h>
|
||
|
|
||
|
int
|
||
|
rsp_init(void);
|
||
|
|
||
|
void
|
||
|
rsp_deinit(void);
|
||
|
|
||
|
void
|
||
|
rsp_request(struct evhttp_request *req);
|
||
|
|
||
|
int
|
||
|
rsp_is_request(struct evhttp_request *req, char *uri);
|
||
|
|
||
|
#endif /* !__HTTPD_RSP_H__ */
|