~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to vio/vio_priv.h

  • Committer: Brian Aker
  • Date: 2008-07-06 15:03:34 UTC
  • Revision ID: brian@tangent.org-20080706150334-xv3xa202trvs0712
USE_RAID cleanup, along with ftbench tools.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
/* Structures and functions private to the vio package */
17
17
 
18
18
#define DONT_MAP_VIO
19
 
#include <drizzled/global.h>
20
 
#include <libdrizzle/libdrizzle.h>
21
 
#include <mysys/my_sys.h>
22
 
#include <string.h>
 
19
#include <my_global.h>
 
20
#include <mysql_com.h>
 
21
#include <my_sys.h>
 
22
#include <m_string.h>
23
23
#include <violite.h>
24
24
 
25
 
#include <netinet/tcp.h>
 
25
/* Windows lacks a netdb.h */
 
26
#ifdef __WIN__
 
27
#include <Ws2tcpip.h>
 
28
#else
26
29
#include <sys/socket.h>
27
 
#include <sys/poll.h>
28
 
 
29
30
#include <netdb.h>
30
 
 
31
 
void vio_ignore_timeout(Vio *vio, bool is_sndtimeo, int32_t timeout);
32
 
void vio_timeout(Vio *vio, bool is_sndtimeo, int32_t timeout);
 
31
#endif
 
32
 
 
33
 
 
34
void    vio_ignore_timeout(Vio *vio, uint which, uint timeout);
 
35
void    vio_timeout(Vio *vio,uint which, uint timeout);