summaryrefslogtreecommitdiff
path: root/lib/multihandle.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-09-02 12:06:20 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-09-02 22:41:58 +0200
commit9b3f888a00fe0c796e8ef7f00d03bb2adc2baa4e (patch)
treed8807f4db74c55c7fc4f23004392d8bb0892b658 /lib/multihandle.h
parent8bdc4f8aeee98802e16426adfb79855df918d47c (diff)
downloadcurl-9b3f888a00fe0c796e8ef7f00d03bb2adc2baa4e.tar.gz
llist: make it "struct Curl_llist"
As internal global names should use captical C. Closes #5906
Diffstat (limited to 'lib/multihandle.h')
-rw-r--r--lib/multihandle.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/multihandle.h b/lib/multihandle.h
index 46eb12146..51112de28 100644
--- a/lib/multihandle.h
+++ b/lib/multihandle.h
@@ -27,7 +27,7 @@
#include "socketpair.h"
struct Curl_message {
- struct curl_llist_element list;
+ struct Curl_llist_element list;
/* the 'CURLMsg' is the part that is visible to the external user */
struct CURLMsg extmsg;
};
@@ -89,9 +89,9 @@ struct Curl_multi {
int num_alive; /* amount of easy handles that are added but have not yet
reached COMPLETE state */
- struct curl_llist msglist; /* a list of messages from completed transfers */
+ struct Curl_llist msglist; /* a list of messages from completed transfers */
- struct curl_llist pending; /* Curl_easys that are in the
+ struct Curl_llist pending; /* Curl_easys that are in the
CURLM_STATE_CONNECT_PEND state */
/* callback function and user data pointer for the *socket() API */