1
0
mirror of https://github.com/lxsang/ant-http synced 2024-06-18 07:40:14 +02:00
ant-http/server.h
DanyLE 58a7738afe
All checks were successful
gitea-sync/ant-http/pipeline/head This commit looks good
feat: rework on plugin support
- New plugin interface that supports multiple instances
- Fix and improve memory bugs
- Refactory and cleanup lib
- Improve scheduler
2024-03-13 18:07:07 +01:00

8 lines
177 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