mirror of
https://github.com/curl/curl.git
synced 2026-04-16 20:21:43 +03:00
parent
2abfa3833b
commit
e925d0d1ff
1 changed files with 8 additions and 0 deletions
|
|
@ -54,6 +54,7 @@
|
|||
#include <hyper.h>
|
||||
#include "urldata.h"
|
||||
#include "sendf.h"
|
||||
#include "headers.h"
|
||||
#include "transfer.h"
|
||||
#include "multiif.h"
|
||||
#include "progress.h"
|
||||
|
|
@ -887,6 +888,13 @@ CURLcode Curl_http(struct Curl_easy *data, bool *done)
|
|||
*done = TRUE;
|
||||
Curl_client_cleanup(data);
|
||||
|
||||
/* Add collecting of headers written to client. For a new connection,
|
||||
* we might have done that already, but reuse
|
||||
* or multiplex needs it here as well. */
|
||||
result = Curl_headers_init(data);
|
||||
if(result)
|
||||
return result;
|
||||
|
||||
infof(data, "Time for the Hyper dance");
|
||||
memset(h, 0, sizeof(struct hyptransfer));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue