1
0
mirror of https://github.com/lxsang/ant-http synced 2024-06-01 08:40:13 +02:00
ant-http/server.h

8 lines
177 B
C
Raw Normal View History

2024-03-12 21:59:50 +01:00
#ifndef HTTP_SERVER
#define HTTP_SERVER
void * accept_request(void *);
void * proxify(void *data);
void * resolve_request(void *data);
void * finish_request(void *data);
2024-03-12 21:59:50 +01:00
#endif