diff options
| author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-07-13 17:10:56 +0000 | 
|---|---|---|
| committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-07-13 17:10:56 +0000 | 
| commit | d61356769c07d3cc41bca553da8a0b9924d61fd0 (patch) | |
| tree | a10b65cb7ffda97d2ca25344848cb6952b2b6ad7 /package/uhttpd/src/uhttpd-utils.h | |
| parent | 4360ecfaa758a40ba38447a897508b1935c6f8c3 (diff) | |
[package] uhttpd: various changes
	- remove unused variables
	- simply ignore command line args which belong to not enabled features
	- resolve peer address at accept() time, should solve (#11850)
	- remove floating point operations where possible
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32704 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uhttpd/src/uhttpd-utils.h')
| -rw-r--r-- | package/uhttpd/src/uhttpd-utils.h | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/package/uhttpd/src/uhttpd-utils.h b/package/uhttpd/src/uhttpd-utils.h index 31047f555..9de919194 100644 --- a/package/uhttpd/src/uhttpd-utils.h +++ b/package/uhttpd/src/uhttpd-utils.h @@ -115,7 +115,9 @@ struct path_info * uh_path_lookup(struct client *cl, const char *url);  struct listener * uh_listener_add(int sock, struct config *conf);  struct listener * uh_listener_lookup(int sock); -struct client * uh_client_add(int sock, struct listener *serv); +struct client * uh_client_add(int sock, struct listener *serv, +                              struct sockaddr_in6 *peer); +  struct client * uh_client_lookup(int sock);  #define uh_client_error(cl, code, status, ...) do { \  | 
