From 3cd43bbfecf571d8cf89d87edf29b8a6257a1379 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 2 Aug 2013 12:21:11 +0200 Subject: multi: rename all Curl_one_easy to SessionHandle --- lib/multihandle.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'lib/multihandle.h') diff --git a/lib/multihandle.h b/lib/multihandle.h index 714abf6b7..552aa9379 100644 --- a/lib/multihandle.h +++ b/lib/multihandle.h @@ -59,8 +59,6 @@ typedef enum { #define GETSOCK_READABLE (0x00ff) #define GETSOCK_WRITABLE (0xff00) -#define Curl_one_easy SessionHandle - /* This is the struct known as CURLM on the outside */ struct Curl_multi { /* First a simple identifier to easier detect if a user mix up @@ -68,8 +66,8 @@ struct Curl_multi { long type; /* We have a doubly-linked circular list with easy handles */ - struct Curl_one_easy *easyp; - struct Curl_one_easy *easylp; /* last node */ + struct SessionHandle *easyp; + struct SessionHandle *easylp; /* last node */ int num_easy; /* amount of entries in the linked list above. */ int num_alive; /* amount of easy handles that are added but have not yet -- cgit v1.2.3