Changeset 336
- Timestamp:
- 07/06/07 23:00:34 (1 year ago)
- Files:
-
- wifidog/wifidog-client/libhttpd/api.c (modified) (3 diffs)
- wifidog/wifidog-client/libhttpd/httpd.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wifidog/wifidog-client/libhttpd/api.c
r311 r336 15 15 ** 16 16 ** 17 ** $Id: api.c 290 2004-11-22 21:45:58Z alexcv$17 ** $Id: api.c 1239 2007-05-30 19:21:21Z david $ 18 18 ** 19 19 */ … … 574 574 575 575 #if 0 576 /* XXX: For WifiDog, we only process the query string parameters577 but keep the GET variables in the request.query!576 /* XXX: For WifiDog, we only process the query string parameters 577 but keep the GET variables in the request.query! 578 578 */ 579 579 /* … … 595 595 if (cp != NULL) 596 596 { 597 *cp++ = 0;597 *cp++ = 0; 598 598 strncpy(r->request.query, cp, sizeof(r->request.query)); 599 599 _httpd_storeData(r, cp); 600 600 } 601 601 602 return(0);602 return(0); 603 603 } 604 604 wifidog/wifidog-client/libhttpd/httpd.h
r311 r336 99 99 authLength; 100 100 char path[HTTP_MAX_URL], 101 query[HTTP_MAX_URL],102 host[HTTP_MAX_URL], /* acv@acv.ca/wifidog: Added decoding101 query[HTTP_MAX_URL], 102 host[HTTP_MAX_URL], /* acv@acv.ca/wifidog: Added decoding 103 103 of host: header if present. */ 104 104 ifModified[HTTP_MAX_URL];
