diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-08-18 00:04:52 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-08-18 00:04:52 +0000 |
commit | 8618e98eabec2b5677698daa631f195cae92c30b (patch) | |
tree | 6ce25834c1c3846ab105f2bd2d8bdd5f1a003f34 /package/uhttpd/src/uhttpd.h | |
parent | 12671e163c60a5a5175a7a56b3d3d83451e369ab (diff) |
[package] uhttpd:
- fix parsing of interpreter entries in the config file, fixes serving of static files as .cgi with X-Wrt
- better cope with connection aborts, especially during header transfer
- fix return value checking of TLS reads and writes, solves some blocking issues
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22692 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uhttpd/src/uhttpd.h')
-rw-r--r-- | package/uhttpd/src/uhttpd.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/uhttpd/src/uhttpd.h b/package/uhttpd/src/uhttpd.h index 78cca7b3b2..6747b905ff 100644 --- a/package/uhttpd/src/uhttpd.h +++ b/package/uhttpd/src/uhttpd.h @@ -28,6 +28,7 @@ #include <sys/select.h> #include <sys/wait.h> #include <netinet/in.h> +#include <netinet/tcp.h> #include <arpa/inet.h> #include <linux/limits.h> #include <netdb.h> @@ -44,6 +45,11 @@ #include <openssl/ssl.h> #endif +/* uClibc... */ +#ifndef SOL_TCP +#define SOL_TCP 6 +#endif + #define UH_LIMIT_MSGHEAD 4096 #define UH_LIMIT_HEADERS 64 |