~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/drizzle_protocol/vio.cc

  • Committer: Brian Aker
  • Date: 2010-04-05 23:46:43 UTC
  • Revision ID: brian@gaz-20100405234643-0he3xnj902rc70r8
Fixing tests to work with PBXT.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
  the file descriptior.
21
21
*/
22
22
 
 
23
#include "config.h"
 
24
 
23
25
#define DONT_MAP_VIO
24
 
#include <drizzled/global.h>
25
26
#include "vio.h"
26
 
#include <string.h>
27
 
#include <stdint.h>
 
27
 
 
28
#include <fcntl.h>
 
29
 
 
30
#include <cstdio>
 
31
#include <cstring>
 
32
#include <cstdlib>
 
33
#include <memory>
 
34
 
 
35
using namespace std;
 
36
 
 
37
namespace drizzle_protocol
 
38
{
28
39
 
29
40
/*
30
41
 * Helper to fill most of the Vio* with defaults.
112
123
 
113
124
*/
114
125
void drizzleclient_vio_end(void)
115
 
{
116
 
}
 
126
{ }
 
127
 
 
128
} /* namespace drizzle_protocol */