Commit d5678e17 authored by unknown's avatar unknown

Fix non-ssl build.

parent 6ef4f89d
...@@ -28,9 +28,11 @@ extern ssize_t my_send_async(struct mysql_async_context *b, int fd, ...@@ -28,9 +28,11 @@ extern ssize_t my_send_async(struct mysql_async_context *b, int fd,
uint timeout); uint timeout);
extern my_bool my_poll_read_async(struct mysql_async_context *b, extern my_bool my_poll_read_async(struct mysql_async_context *b,
uint timeout); uint timeout);
#ifdef HAVE_OPENSSL
extern int my_ssl_read_async(struct mysql_async_context *b, SSL *ssl, extern int my_ssl_read_async(struct mysql_async_context *b, SSL *ssl,
void *buf, int size); void *buf, int size);
extern int my_ssl_write_async(struct mysql_async_context *b, SSL *ssl, extern int my_ssl_write_async(struct mysql_async_context *b, SSL *ssl,
const void *buf, int size); const void *buf, int size);
#endif
#endif /* MYSQL_ASYNC_H */ #endif /* MYSQL_ASYNC_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment