1
0
mirror of https://github.com/lxsang/ant-http synced 2024-06-18 07:40:14 +02:00
ant-http/server.h
2024-03-12 21:59:50 +01:00

8 lines
173 B
C

#ifndef HTTP_SERVER
#define HTTP_SERVER
void *accept_request(void *);
void *proxify(void *data);
void *resolve_request(void *data);
void *finish_request(void *data);
#endif