Searched refs:errbuf (Results 1 – 3 of 3) sorted by relevance
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_ERRORBUFFER.md | 69 char errbuf[CURL_ERROR_SIZE]; 74 curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, errbuf); 77 errbuf[0] = 0; 83 information. if no detailed error information was written to errbuf 87 size_t len = strlen(errbuf); 90 fprintf(stderr, "%s%s", errbuf, 91 ((errbuf[len - 1] != '\n') ? "\n" : ""));
|
/curl/lib/ |
H A D | cf-h1-proxy.c | 823 uint8_t errbuf[256]; in send_CONNECT() local 824 size_t errlen = hyper_error_print(hypererr, errbuf, sizeof(errbuf)); in send_CONNECT() 825 failf(data, "Hyper: %.*s", (int)errlen, errbuf); in send_CONNECT()
|
H A D | c-hyper.c | 389 uint8_t errbuf[256]; in Curl_hyper_stream() local 390 size_t errlen = hyper_error_print(hypererr, errbuf, sizeof(errbuf)); in Curl_hyper_stream() 392 failf(data, "Hyper: [%d] %.*s", (int)code, (int)errlen, errbuf); in Curl_hyper_stream()
|
Completed in 10 milliseconds