aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-02 22:13:35 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-02 22:13:35 +0000
commit8e50d6b6f30aece8180b89987d769b0966460124 (patch)
treeafb53b4abe24c573cf08706ff8e589f26d36750c
parent2db0744a7bf18bd85061d1f3b050368ed4fbe32f (diff)
added two pointers to the fd_set variables to read/write from, as sometimes
we need to point to user-provided fd_sets
-rw-r--r--lib/urldata.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index d61f28132..7480416d4 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;