~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to include/mysql_async.h

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2013-12-22 10:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20131222102705-mndw7s12mz0szrcn
Tags: upstream-5.5.32
Import upstream version 5.5.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
15
 
 
16
/* Common definitions for MariaDB non-blocking client library. */
 
17
 
 
18
#ifndef MYSQL_ASYNC_H
 
19
#define MYSQL_ASYNC_H
 
20
 
 
21
extern int my_connect_async(struct mysql_async_context *b, my_socket fd,
 
22
                            const struct sockaddr *name, uint namelen,
 
23
                            uint timeout);
 
24
extern ssize_t my_recv_async(struct mysql_async_context *b, int fd,
 
25
                             unsigned char *buf, size_t size, uint timeout);
 
26
extern ssize_t my_send_async(struct mysql_async_context *b, int fd,
 
27
                             const unsigned char *buf, size_t size,
 
28
                             uint timeout);
 
29
extern my_bool my_poll_read_async(struct mysql_async_context *b,
 
30
                                  uint timeout);
 
31
#ifdef HAVE_OPENSSL
 
32
extern int my_ssl_read_async(struct mysql_async_context *b, SSL *ssl,
 
33
                             void *buf, int size);
 
34
extern 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 */