Introduce new evhttp-based HTTP server

This commit is contained in:
Julien BLACHE
2009-04-22 21:25:41 +02:00
parent 13c06803f8
commit 095350e6eb
3 changed files with 413 additions and 0 deletions

11
src/httpd.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef __HTTPD_H__
#define __HTTPD_H__
int
httpd_init(void);
void
httpd_deinit(void);
#endif /* !__HTTPD_H__ */