This is only used by the implemementation of http_send_request_send/recv, no
need to have this in the header file.
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Samuel Cabrero <scabrero@suse.de>
return 0;
}
+struct http_read_response_state {
+ enum http_parser_state parser_state;
+ size_t max_headers_size;
+ uint64_t max_content_length;
+ DATA_BLOB buffer;
+ struct http_request *response;
+};
/**
* Parses the HTTP headers
} tstreams;
};
-struct http_read_response_state {
- enum http_parser_state parser_state;
- size_t max_headers_size;
- uint64_t max_content_length;
- DATA_BLOB buffer;
- struct http_request *response;
-};
-
-
#endif /* _HTTP_INTERNAL_H_ */