mirror of
https://github.com/curl/curl.git
synced 2026-08-25 10:53:37 +03:00
llist: make it "struct Curl_llist"
As internal global names should use captical C. Closes #5906
This commit is contained in:
parent
8bdc4f8aee
commit
9b3f888a00
17 changed files with 102 additions and 102 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue