2 * copyright (c) 2001-2006 Emil Mikulic.
4 * http.h: embedded webserver.
8 #include <sys/select.h>
9 #include <netinet/in.h>
11 extern char *base_url
;
13 void http_init(const char *base
, const char * bindaddr
,
14 const unsigned short bindport
, const int max_conn
);
15 void http_fd_set(fd_set
*recv_set
, fd_set
*send_set
, int *max_fd
,
16 struct timeval
*timeout
, int *need_timeout
);
17 void http_poll(fd_set
*read_set
, fd_set
*write_set
);
20 /* vim:set ts=3 sw=3 tw=78 expandtab: */