projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[package] nvram: handle nvram at varying offsets within the eraseblock (fixes Edimax...
[openwrt.git]
/
package
/
uhttpd
/
src
/
uhttpd.h
diff --git
a/package/uhttpd/src/uhttpd.h
b/package/uhttpd/src/uhttpd.h
index
bb08afa
..
32e3970
100644
(file)
--- a/
package/uhttpd/src/uhttpd.h
+++ b/
package/uhttpd/src/uhttpd.h
@@
-26,12
+26,13
@@
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/select.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/select.h>
+#include <sys/wait.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <linux/limits.h>
#include <netdb.h>
#include <ctype.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <linux/limits.h>
#include <netdb.h>
#include <ctype.h>
-
+#include <errno.h>
#include <dlfcn.h>
#include <dlfcn.h>
@@
-63,6
+64,8
@@
struct config {
char docroot[PATH_MAX];
char *realm;
char *file;
char docroot[PATH_MAX];
char *realm;
char *file;
+ int no_symlinks;
+ int network_timeout;
#ifdef HAVE_CGI
char *cgi_prefix;
#endif
#ifdef HAVE_CGI
char *cgi_prefix;
#endif
@@
-73,6
+76,9
@@
struct config {
void (*lua_close) (lua_State *L);
void (*lua_request) (struct client *cl, struct http_request *req, lua_State *L);
#endif
void (*lua_close) (lua_State *L);
void (*lua_request) (struct client *cl, struct http_request *req, lua_State *L);
#endif
+#if defined(HAVE_CGI) || defined(HAVE_LUA)
+ int script_timeout;
+#endif
#ifdef HAVE_TLS
char *cert;
char *key;
#ifdef HAVE_TLS
char *cert;
char *key;
This page took
0.028409 seconds
and
4
git commands to generate.