From: Daniel Stenberg Date: Thu, 2 May 2002 22:13:35 +0000 (+0000) Subject: added two pointers to the fd_set variables to read/write from, as sometimes X-Git-Tag: curl-7_9_7-pre2~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e50d6b6f30aece8180b89987d769b0966460124;p=thirdparty%2Fcurl.git added two pointers to the fd_set variables to read/write from, as sometimes we need to point to user-provided fd_sets --- diff --git a/lib/urldata.h b/lib/urldata.h index d61f281321..7480416d46 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -249,6 +249,10 @@ struct Curl_transfer_keeper { char *uploadbuf; int maxfd; + /* pointers to the actual descriptors we check */ + fd_set *readfdp; + fd_set *writefdp; + /* the file descriptors to play with */ fd_set readfd; fd_set writefd;