mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
made the arrow for 'Send SSL data' point in the right direction!
This commit is contained in:
parent
316a9f6480
commit
7575e6afc4
@ -84,6 +84,9 @@ int my_trace(CURL *handle, curl_infotype type,
|
||||
case CURLINFO_DATA_OUT:
|
||||
text = "=> Send data";
|
||||
break;
|
||||
case CURLINFO_SSL_DATA_OUT:
|
||||
text = "=> Send SSL data";
|
||||
break;
|
||||
case CURLINFO_HEADER_IN:
|
||||
text = "<= Recv header";
|
||||
break;
|
||||
@ -93,9 +96,6 @@ int my_trace(CURL *handle, curl_infotype type,
|
||||
case CURLINFO_SSL_DATA_IN:
|
||||
text = "<= Recv SSL data";
|
||||
break;
|
||||
case CURLINFO_SSL_DATA_OUT:
|
||||
text = "<= Send SSL data";
|
||||
break;
|
||||
}
|
||||
|
||||
dump(text, stderr, data, size, config->trace_ascii);
|
||||
|
Loading…
Reference in New Issue
Block a user