Changeset 93d4d8f for lib/http_client.c
- Timestamp:
- 2023-02-28T00:09:28Z (21 months ago)
- Branches:
- master
- Children:
- 709f41f
- Parents:
- 1bdc669
- git-author:
- Lalufu <Lalufu@…> (28-02-23 00:09:28)
- git-committer:
- GitHub <noreply@…> (28-02-23 00:09:28)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/http_client.c
r1bdc669 r93d4d8f 494 494 495 495 if (((req->status_code >= 301 && req->status_code <= 303) || 496 req->status_code == 307 ) && req->redir_ttl-- > 0) {496 req->status_code == 307 || req->status_code == 308) && req->redir_ttl-- > 0) { 497 497 char *loc, *new_request, *new_host; 498 498 int error = 0, new_port, new_proto; … … 565 565 Well except someone at identi.ca's didn't bother reading any 566 566 RFCs and just return HTTP/1.1-specific status codes to HTTP/1.0 567 requests. Fuckers. So here we are, handle 301..303,307 . */567 requests. Fuckers. So here we are, handle 301..303,307,308. */ 568 568 if (strncmp(req->request, "GET", 3) == 0) { 569 569 /* GETs never become POSTs. */ … … 573 573 new_method = "GET"; 574 574 } else { 575 /* 301 de-facto should stay POST, 307 specifally RFC 2616#10.3.8 */575 /* 301 de-facto should stay POST, 307/308 specifally RFC 2616#10.3.8 */ 576 576 new_method = "POST"; 577 577 }
Note: See TracChangeset
for help on using the changeset viewer.