2009-04-24 09:41:20 -04:00
|
|
|
|
|
|
|
#ifndef __HTTPD_RSP_H__
|
|
|
|
#define __HTTPD_RSP_H__
|
|
|
|
|
2015-10-19 15:15:29 -04:00
|
|
|
#include <event2/http.h>
|
2009-04-24 09:41:20 -04:00
|
|
|
|
|
|
|
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__ */
|