From acee2785d8b10a7513f46ca8c618be33f9ada073 Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Mon, 18 May 2020 21:46:10 -0600 Subject: * Further modifications to http.c to account for differences in which http replies can come, so that http_* functions return the body and not the headers of a reply. --- imap/src/c-client/http.c | 61 +++++++++++++++++++++++------------------------- pith/pine.hlp | 2 +- 2 files changed, 30 insertions(+), 33 deletions(-) diff --git a/imap/src/c-client/http.c b/imap/src/c-client/http.c index 7744e54..f287e4f 100644 --- a/imap/src/c-client/http.c +++ b/imap/src/c-client/http.c @@ -103,15 +103,15 @@ void http_add_body(HTTP_REQUEST_S **, unsigned char *); void buffer_add(unsigned char **, unsigned char *); unsigned char *hex_escape_url_part(unsigned char *, unsigned char *); unsigned char *encode_url_body_part(unsigned char *, unsigned char *); -unsigned char *http_response_from_reply(unsigned char *); +unsigned char *http_response_from_reply(HTTPSTREAM *); /* HTTP function prototypes */ int http_valid_net_parse (unsigned char *, NETMBX *); void *http_parameters (long function,void *value); -long http_send (HTTPSTREAM *stream, HTTP_REQUEST_S *); -long http_reply (HTTPSTREAM *stream); -long http_fake (HTTPSTREAM *stream, unsigned char *text); +long http_send (HTTPSTREAM *, HTTP_REQUEST_S *); +long http_reply (HTTPSTREAM *); +long http_fake (HTTPSTREAM *, unsigned char *); void http_skipows(unsigned char **); void http_remove_trailing_ows(unsigned char *); @@ -132,20 +132,31 @@ PARAMETER *http_parse_parameter(unsigned char *, int); void http_parse_headers(HTTPSTREAM *); unsigned char * -http_response_from_reply(unsigned char *reply) +http_response_from_reply(HTTPSTREAM *stream) { - unsigned char *rv, *s, *t; - - if (reply == NULL - || (s = strstr(reply, "\r\n\r\n")) == NULL - || (t = strstr(s + 4, "\r\n")) == NULL) - rv = NULL; - else - rv = t + 2; - return rv; -} + unsigned char *rv = NULL, *s, *t; + if(stream == NULL || stream->reply == NULL || stream->header == NULL) + return rv; + if(stream->header->content_length){ + s = strstr(stream->reply, "\r\n\r\n"); + if(s != NULL) rv = s + 4; + } + else if (stream->header->transfer_encoding){ + HTTP_PARAM_LIST_S *p = stream->header->transfer_encoding->p; + for(; p ; p = p->next){ + if(!compare_cstring(p->vp->value, "chunked")) + break; + } + if(p && p->vp->value){ /* chunked transfer */ + if((s = strstr(stream->reply, "\r\n\r\n")) != NULL + && (t = strstr(s + 4, "\r\n")) != NULL) + rv = t + 2; + } + } + return rv; +} void http_parse_headers(HTTPSTREAM *stream) @@ -960,7 +971,7 @@ http_post_param(unsigned char *url, HTTP_PARAM_S *param) } if(http_send(stream, http_request)){ - unsigned char *s = http_response_from_reply(stream->reply); + unsigned char *s = http_response_from_reply(stream); response = cpystr(s ? (char *) s : ""); http_close(stream); } @@ -1001,7 +1012,7 @@ http_post_param2(unsigned char *url, HTTP_PARAM_S *param) } if(http_send(stream, http_request)){ - unsigned char *s = http_response_from_reply(stream->reply); + unsigned char *s = http_response_from_reply(stream); response = cpystr(s ? (char *) s : ""); http_close(stream); } @@ -1043,7 +1054,7 @@ http_get(unsigned char *url) http_add_header(&http_request, "Host", stream->urlhost); if(http_send(stream, http_request)){ - unsigned char *s = http_response_from_reply(stream->reply); + unsigned char *s = http_response_from_reply(stream); response = cpystr(s ? (char *) s : ""); http_close(stream); } @@ -1200,20 +1211,6 @@ http_reply (HTTPSTREAM *stream) } } -#if 0 - while(in_header == 0){ - if (stream->response) fs_give ((void **) &stream->response); - stream->response = (unsigned char *) net_getline (stream->netstream); - if(stream->response){ - buffer_add(&stream->reply, stream->response); - buffer_add(&stream->reply, stream->response); - } - buffer_add(&stream->reply, "\015\012"); - if(!stream->response || *stream->response == '\0') - in_header--; - } -#endif - if(!stream->netstream) http_fake(stream, "Connection to HTTP server closed"); return stream->netstream ? T : NIL; diff --git a/pith/pine.hlp b/pith/pine.hlp index 43fcab4..bebdee2 100644 --- a/pith/pine.hlp +++ b/pith/pine.hlp @@ -140,7 +140,7 @@ with help text for the config screen and the composer that didn't have any reasonable place to be called from. Dummy change to get revision in pine.hlp ============= h_revision ================= -Alpine Commit 429 2020-05-18 13:55:56 +Alpine Commit 430 2020-05-18 21:46:04 ============= h_news ================= -- cgit v1.2.3-54-g00ecf