mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / storage / ndb / include / util / socket_io.h
blobfa00e19f9deb3784eaaac094d92f7ac405df9469
1 /* Copyright (c) 2003-2007 MySQL AB
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.
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.
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 02110-1301, USA */
16 #ifndef _SOCKET_IO_H
17 #define _SOCKET_IO_H
19 #include <ndb_global.h>
21 #include <NdbTCP.h>
23 #include <NdbMutex.h>
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
29 int read_socket(NDB_SOCKET_TYPE, int timeout_ms, char *, int len);
31 int readln_socket(NDB_SOCKET_TYPE socket, int timeout_millis, int *time,
32 char * buf, int buflen, NdbMutex *mutex);
34 int write_socket(NDB_SOCKET_TYPE, int timeout_ms, int *time,
35 const char[], int len);
37 int print_socket(NDB_SOCKET_TYPE, int timeout_ms, int *time,
38 const char *, ...);
39 int println_socket(NDB_SOCKET_TYPE, int timeout_ms, int *time,
40 const char *, ...);
41 int vprint_socket(NDB_SOCKET_TYPE, int timeout_ms, int *time,
42 const char *, va_list);
43 int vprintln_socket(NDB_SOCKET_TYPE, int timeout_ms, int *time,
44 const char *, va_list);
46 #ifdef __cplusplus
48 #endif
50 #endif