Skip to content
Snippets Groups Projects
Commit 4c587976 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

When sending info about which host that sends what, include proper direction

to/from, based on a suggestion from Alexander Krasnostavsky
parent d620f1e5
No related branches found
No related tags found
No related merge requests found
......@@ -469,10 +469,26 @@ int Curl_debug(struct SessionHandle *data, curl_infotype type,
int rc;
if(data->set.printhost && host) {
char buffer[160];
snprintf(buffer, sizeof(buffer), "[Chunk to/from %s]", host);
rc = showit(data, CURLINFO_TEXT, buffer, strlen(buffer));
if(rc)
return rc;
char *t=NULL;
switch (type) {
case CURLINFO_HEADER_IN:
case CURLINFO_DATA_IN:
t = "from";
break;
case CURLINFO_HEADER_OUT:
case CURLINFO_DATA_OUT:
t = "to";
break;
default:
break;
}
if(t) {
snprintf(buffer, sizeof(buffer), "[Data %s %s]", t, host);
rc = showit(data, CURLINFO_TEXT, buffer, strlen(buffer));
if(rc)
return rc;
}
}
rc = showit(data, type, ptr, size);
return rc;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment