diff options
author | Yang Tse <yangsita@gmail.com> | 2007-03-26 23:23:46 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-03-26 23:23:46 +0000 |
commit | fba4cd0e625cdba3561b3530317ba87ae348aeaf (patch) | |
tree | 0b245f00a4f21478d863db7cdd49a92797ee8cf9 /lib/select.h | |
parent | 2166645ce4091b14ef6fd25c594d184c4f700ba5 (diff) | |
download | curl-fba4cd0e625cdba3561b3530317ba87ae348aeaf.tar.gz |
Internal function Curl_select() renamed to Curl_socket_ready()
Diffstat (limited to 'lib/select.h')
-rw-r--r-- | lib/select.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/select.h b/lib/select.h index c5a9c1059..8c59f155e 100644 --- a/lib/select.h +++ b/lib/select.h @@ -68,7 +68,7 @@ struct pollfd #define CSELECT_OUT 0x02 #define CSELECT_ERR 0x04 -int Curl_select(curl_socket_t readfd, curl_socket_t writefd, int timeout_ms); +int Curl_socket_ready(curl_socket_t readfd, curl_socket_t writefd, int timeout_ms); int Curl_poll(struct pollfd ufds[], unsigned int nfds, int timeout_ms); |