1/* Copyright (C) 2012 MariaDB Services and Kristian Nielsen
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; version 2 of the License.
6
7 This program is distributed in the hope that it will be useful,
8 but WITHOUT ANY WARRANTY; without even the implied warranty of
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 GNU General Public License for more details.
11
12 You should have received a copy of the GNU General Public License
13 along with this program; if not, write to the Free Software
14 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA */
15
16/* Common definitions for MariaDB non-blocking client library. */
17
18#ifndef MYSQL_ASYNC_H
19#define MYSQL_ASYNC_H
20
21extern int my_connect_async(struct mysql_async_context *b, my_socket fd,
22 const struct sockaddr *name, uint namelen,
23 int vio_timeout);
24extern ssize_t my_recv_async(struct mysql_async_context *b, my_socket fd,
25 unsigned char *buf, size_t size, int timeout);
26extern ssize_t my_send_async(struct mysql_async_context *b, my_socket fd,
27 const unsigned char *buf, size_t size,
28 int timeout);
29extern my_bool my_io_wait_async(struct mysql_async_context *b,
30 enum enum_vio_io_event event, int timeout);
31#ifdef HAVE_OPENSSL
32extern int my_ssl_read_async(struct mysql_async_context *b, SSL *ssl,
33 void *buf, int size);
34extern int my_ssl_write_async(struct mysql_async_context *b, SSL *ssl,
35 const void *buf, int size);
36#endif
37
38#endif /* MYSQL_ASYNC_H */
39