mirror of
https://github.com/curl/curl.git
synced 2026-05-30 14:37:30 +03:00
add missing state name for the debug state switch output
This commit is contained in:
parent
f9a339a225
commit
3d528e1b15
1 changed files with 4 additions and 0 deletions
|
|
@ -56,6 +56,9 @@ struct Curl_message {
|
|||
struct Curl_message *next;
|
||||
};
|
||||
|
||||
/* NOTE: if you add a state here, add the name to the statename[] array as
|
||||
well!
|
||||
*/
|
||||
typedef enum {
|
||||
CURLM_STATE_INIT, /* start in this state */
|
||||
CURLM_STATE_CONNECT, /* resolve/connect has been sent off */
|
||||
|
|
@ -182,6 +185,7 @@ static const char *statename[]={
|
|||
"CONNECT",
|
||||
"WAITRESOLVE",
|
||||
"WAITCONNECT",
|
||||
"WAITPROXYCONNECT",
|
||||
"PROTOCONNECT",
|
||||
"WAITDO",
|
||||
"DO",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue