mirror of
https://github.com/moparisthebest/curl
synced 2025-03-01 09:51:46 -05:00
added two pointers to the fd_set variables to read/write from, as sometimes
we need to point to user-provided fd_sets
This commit is contained in:
parent
2db0744a7b
commit
8e50d6b6f3
@ -249,6 +249,10 @@ struct Curl_transfer_keeper {
|
|||||||
char *uploadbuf;
|
char *uploadbuf;
|
||||||
int maxfd;
|
int maxfd;
|
||||||
|
|
||||||
|
/* pointers to the actual descriptors we check */
|
||||||
|
fd_set *readfdp;
|
||||||
|
fd_set *writefdp;
|
||||||
|
|
||||||
/* the file descriptors to play with */
|
/* the file descriptors to play with */
|
||||||
fd_set readfd;
|
fd_set readfd;
|
||||||
fd_set writefd;
|
fd_set writefd;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user