1 #ifndef _KHTTPD_INCLUDE_GUARD_SYSCTL_H
2 #define _KHTTPD_INCLUDE_GUARD_SYSCTL_H
3 
4 extern char 	sysctl_khttpd_docroot[200];
5 extern int 	sysctl_khttpd_stop;
6 extern int 	sysctl_khttpd_start;
7 extern int 	sysctl_khttpd_unload;
8 extern int 	sysctl_khttpd_clientport;
9 extern int 	sysctl_khttpd_permreq;
10 extern int 	sysctl_khttpd_permforbid;
11 extern int 	sysctl_khttpd_logging;
12 extern int 	sysctl_khttpd_serverport;
13 extern int 	sysctl_khttpd_sloppymime;
14 extern int 	sysctl_khttpd_threads;
15 extern int	sysctl_khttpd_maxconnect;
16 
17 /* incremented each time sysctl_khttpd_stop goes nonzero */
18 extern atomic_t	khttpd_stopCount;
19 
20 #endif
21