violite.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /*
  18.  * Vio Lite.
  19.  * Purpose: include file for Vio that will work with C and C++
  20.  */
  21. #ifndef vio_violite_h_
  22. #define vio_violite_h_
  23. #include "my_net.h" /* needed because of struct in_addr */
  24. #ifdef HAVE_VIO
  25. #include <Vio.h> /* Full VIO interface */
  26. #else
  27. /* Simple vio interface in C;  The functions are implemented in violite.c */
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif /* __cplusplus */
  31. #ifndef Vio_defined
  32. #define Vio_defined
  33. struct st_vio; /* Only C */
  34. typedef struct st_vio Vio;
  35. #endif
  36. enum enum_vio_type { VIO_CLOSED, VIO_TYPE_TCPIP, VIO_TYPE_SOCKET,
  37.      VIO_TYPE_NAMEDPIPE, VIO_TYPE_SSL};
  38. Vio* vio_new(my_socket sd,
  39. enum enum_vio_type type,
  40. my_bool localhost);
  41. #ifdef __WIN__
  42. Vio* vio_new_win32pipe(HANDLE hPipe);
  43. #endif
  44. void vio_delete(Vio* vio);
  45. /*
  46.  * vio_read and vio_write should have the same semantics
  47.  * as read(2) and write(2).
  48.  */
  49. int vio_read( Vio* vio,
  50. gptr buf, int size);
  51. int vio_write( Vio* vio,
  52. const gptr buf,
  53. int size);
  54. /*
  55.  * Whenever the socket is set to blocking mode or not.
  56.  */
  57. int vio_blocking( Vio* vio,
  58. my_bool     onoff);
  59. my_bool vio_is_blocking( Vio* vio);
  60. /*
  61.  * setsockopt TCP_NODELAY at IPPROTO_TCP level, when possible.
  62.  */
  63.   int vio_fastsend( Vio* vio);
  64. /*
  65.  * setsockopt SO_KEEPALIVE at SOL_SOCKET level, when possible.
  66.  */
  67. int vio_keepalive( Vio* vio,
  68. my_bool onoff);
  69. /*
  70.  * Whenever we should retry the last read/write operation.
  71.  */
  72. my_bool vio_should_retry( Vio* vio);
  73. /*
  74.  * When the workday is over...
  75.  */
  76. int vio_close( Vio* vio);
  77. /*
  78.  * Short text description of the socket for those, who are curious..
  79.  */
  80. const char* vio_description( Vio* vio);
  81. /* Return the type of the connection */
  82.  enum enum_vio_type vio_type(Vio* vio);
  83. /* Return last error number */
  84. int vio_errno(Vio *vio);
  85. /* Get socket number */
  86. my_socket vio_fd(Vio *vio);
  87. /*
  88.  * Remote peer's address and name in text form.
  89.  */
  90. my_bool vio_peer_addr(Vio * vio, char *buf);
  91. /* Remotes in_addr */
  92. void vio_in_addr(Vio *vio, struct in_addr *in);
  93.   /* Return 1 if there is data to be read */
  94. my_bool vio_poll_read(Vio *vio,uint timeout);
  95. #ifdef __cplusplus
  96. }
  97. #endif
  98. #endif /* HAVE_VIO */
  99. #endif /* vio_violite_h_ */