10 lines
208 B
C
10 lines
208 B
C
|
#ifndef _CONNECTION_H_
|
||
|
#define _CONNECTION_H_
|
||
|
|
||
|
#include "httpd.h"
|
||
|
|
||
|
int ctcs_accept_handler(int fd, void *privdata);
|
||
|
int ctcs_httpd_handler(struct httpd_con *con, void *privdata);
|
||
|
|
||
|
#endif /* _CONNECTION_H_ */
|