diff options
Diffstat (limited to 'include/mysql_async.h')
-rw-r--r-- | include/mysql_async.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/mysql_async.h b/include/mysql_async.h index c2c3bd6fa48..89f263560ac 100644 --- a/include/mysql_async.h +++ b/include/mysql_async.h @@ -20,14 +20,14 @@ extern int my_connect_async(struct mysql_async_context *b, my_socket fd, const struct sockaddr *name, uint namelen, - uint timeout); + int vio_timeout); extern ssize_t my_recv_async(struct mysql_async_context *b, int fd, - unsigned char *buf, size_t size, uint timeout); + unsigned char *buf, size_t size, int timeout); extern ssize_t my_send_async(struct mysql_async_context *b, int fd, const unsigned char *buf, size_t size, - uint timeout); -extern my_bool my_poll_read_async(struct mysql_async_context *b, - uint timeout); + int timeout); +extern my_bool my_io_wait_async(struct mysql_async_context *b, + enum enum_vio_io_event event, int timeout); #ifdef HAVE_OPENSSL extern int my_ssl_read_async(struct mysql_async_context *b, SSL *ssl, void *buf, int size); |