~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/drizzle_protocol/vio.h

Put drizzle_protocol plugin in to its own namespace so that symbols won't
conflict with mysql_protocol plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <sys/socket.h>
25
25
#include <errno.h>
26
26
 
 
27
namespace plugin
 
28
{
 
29
namespace drizzle_protocol
 
30
{
 
31
 
27
32
/* Simple vio interface in C;  The functions are implemented in violite.c */
28
33
 
29
34
enum enum_vio_type
133
138
  char                  *read_buffer;   /* buffer for drizzleclient_vio_read_buff */
134
139
};
135
140
 
 
141
}
 
142
}
136
143
#endif /* PLUGIN_DRIZZLE_PROTOCOL_VIO_H */