-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wdctl_thread.c: Fix #324, again. Credit goes to Medea, I misunders…
…tood his instructons. * From David Bird <[email protected]> libhttpd/: Fix #266 - don't process query string parameters and keep them in that request.path.
- Loading branch information
Showing
5 changed files
with
24 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
# $Id$ | ||
2007-05-24 Benoit Gr�goire <[email protected]> | ||
* wdctl_thread.c: Fix #324, again. Credit goes to Medea, I misunderstood his instructons. | ||
* From David Bird <[email protected]> libhttpd/: Fix #266 - don't process query string parameters and keep them in that request.path. | ||
|
||
2007-05-18 Benoit Gr�goire <[email protected]> | ||
* wdctl_thread.c: Fix #324 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,14 +98,16 @@ typedef struct { | |
contentLength, | ||
authLength; | ||
char path[HTTP_MAX_URL], | ||
host[HTTP_MAX_URL], /* [email protected]/wifidog: Added decoding | ||
host[HTTP_MAX_URL], /* [email protected]/wifidog: Added decoding | ||
of host: header if present. */ | ||
ifModified[HTTP_MAX_URL]; | ||
#if(0) | ||
userAgent[HTTP_MAX_URL], | ||
referer[HTTP_MAX_URL], | ||
ifModified[HTTP_MAX_URL], | ||
contentType[HTTP_MAX_URL], | ||
authUser[HTTP_MAX_AUTH], | ||
authPassword[HTTP_MAX_AUTH]; | ||
#endif | ||
} httpReq; | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters