mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-14 17:00:52 +08:00
9697f95b8f
This reverts commit 15d999759e
.
17 lines
378 B
C
17 lines
378 B
C
#ifndef __HTTP_SERVICE_INCLUDE_H__
|
|
#define __HTTP_SERVICE_INCLUDE_H__
|
|
|
|
#include "lib_acl.h"
|
|
|
|
/* in http_service.c */
|
|
|
|
void http_service_init(void *init_ctx);
|
|
void http_service_exit(void *exit_ctx);
|
|
int http_service_main(ACL_VSTREAM *client, void *run_ctx);
|
|
|
|
/* in http_error.c */
|
|
|
|
void http_error_reply(ACL_VSTREAM *client, int status, const char *msg);
|
|
|
|
#endif
|