mirror of
https://github.com/curl/curl.git
synced 2026-07-23 09:47:20 +03:00
Curl_debug: document switch fallthroughs
This commit is contained in:
parent
b0bfae1963
commit
3aa899929d
1 changed files with 2 additions and 0 deletions
|
|
@ -661,11 +661,13 @@ int Curl_debug(struct SessionHandle *data, curl_infotype type,
|
|||
switch (type) {
|
||||
case CURLINFO_HEADER_IN:
|
||||
w = "Header";
|
||||
/* FALLTHROUGH */
|
||||
case CURLINFO_DATA_IN:
|
||||
t = "from";
|
||||
break;
|
||||
case CURLINFO_HEADER_OUT:
|
||||
w = "Header";
|
||||
/* FALLTHROUGH */
|
||||
case CURLINFO_DATA_OUT:
|
||||
t = "to";
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue