Changeset 0eec386
- Timestamp:
- 2006-05-18T16:41:18Z (19 years ago)
- Branches:
- master
- Children:
- 41e5202
- Parents:
- 266fe2f
- Location:
- protocols
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/http_client.c
r266fe2f r0eec386 253 253 evil_server = 1; 254 254 } 255 else 255 else if( end1 ) 256 256 { 257 257 end1 += 2; 258 258 } 259 260 if( end1 ) 261 { 262 *end1 = 0; 263 264 if( evil_server ) 265 req->reply_body = end1 + 1; 266 else 267 req->reply_body = end1 + 2; 268 } 259 else 260 { 261 goto cleanup; 262 } 263 264 *end1 = 0; 265 266 if( evil_server ) 267 req->reply_body = end1 + 1; 268 else 269 req->reply_body = end1 + 2; 270 271 req->body_size = req->reply_headers + bytes_read - req->reply_body; 269 272 270 273 if( ( end1 = strchr( req->reply_headers, ' ' ) ) != NULL ) -
protocols/http_client.h
r266fe2f r0eec386 39 39 char *reply_headers; 40 40 char *reply_body; 41 int body_size; 41 42 int finished; 42 43
Note: See TracChangeset
for help on using the changeset viewer.