Sfoglia il codice sorgente

Capture URL _after_ redirects

default_compile_flags
vector-of-bool 3 anni fa
parent
commit
b6ab6e34b7
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      src/dds/util/http/pool.cpp

+ 2
- 2
src/dds/util/http/pool.cpp Vedi File

@@ -111,7 +111,7 @@ struct http_client_impl {
{"Host", hostname_port},
{"Accept", "*/*"},
{"Content-Length", "0"},
{"TE", "gzip, chunked, plain"},
{"TE", "gzip, chunked"},
{"Connection", "keep-alive"},
};
if (!params.prior_etag.empty()) {
@@ -385,8 +385,8 @@ void http_client::_set_ready() noexcept {
}

request_result http_pool::request(neo::url url, http_request_params params) {
DDS_E_SCOPE(url);
for (auto i = 0; i <= 100; ++i) {
DDS_E_SCOPE(url);
params.path = url.path;
params.query = url.query.value_or("");


Loading…
Annulla
Salva