| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Libevent
Revision: 939
Author: nprovos
Date: 07 Sep 2008 19:26:47
Changes:from trunk: do not remove accept-encoding header in make request
Files:| ... | ...@@ -368,7 +368,7 @@ | |
| 368 | 368 | } |
| 369 | 369 | |
| 370 | 370 | /* |
| 371 | * Create the headers need for an HTTP request | |
| 371 | * Create the headers needed for an HTTP request | |
| 372 | 372 | */ |
| 373 | 373 | static void |
| 374 | 374 | evhttp_make_header_request(struct evhttp_connection *evcon, |
| ... | ...@@ -377,7 +377,6 @@ | |
| 377 | 377 | char line[1024]; |
| 378 | 378 | const char *method; |
| 379 | 379 | |
| 380 | evhttp_remove_header(req->output_headers, "Accept-Encoding"); | |
| 381 | 380 | evhttp_remove_header(req->output_headers, "Proxy-Connection"); |
| 382 | 381 | |
| 383 | 382 | /* Generate request line */ |
| ... | ...@@ -1,6 +1,7 @@ | |
| 1 | 1 | Changes in 1.4.8-stable: |
| 2 | 2 | o Match the query in DNS replies to the query in the request; from Vsevolod Stakhov. |
| 3 | 3 | o Fix a merge problem in which name_from_addr returned pointers to the stack; found by Jiang Hong. |
| 4 | o Do not remove Accept-Encoding header | |
| 4 | 5 | |
| 5 | 6 | Changes in 1.4.7-stable: |
| 6 | 7 | o Fix a bug where headers arriving in multiple packets were not parsed; fix from Jiang Hong; test by me. |