- Bryan Henderson introduces two things:

1) the progress callback gets called more frequently (at times)
  2) libcurl *might* call the callback when it receives a signal
This commit is contained in:
Daniel Stenberg
2007-03-10 12:11:21 +00:00
parent 433575068c
commit dbaf4f9361
8 changed files with 254 additions and 49 deletions

View File

@@ -51,6 +51,9 @@ struct pollfd
#define CSELECT_OUT 0x02
#define CSELECT_ERR 0x04
int Curl_pselect(curl_socket_t readfd, curl_socket_t writefd, int timeout_ms,
sigset_t * sigmask);
int Curl_select(curl_socket_t readfd, curl_socket_t writefd, int timeout_ms);
int Curl_poll(struct pollfd ufds[], unsigned int nfds, int timeout_ms);