~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/options.h

  • Committer: Monty Taylor
  • Date: 2010-12-03 19:56:07 UTC
  • mto: (1975.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1976.
  • Revision ID: mordred@inaugust.com-20101203195607-yw50aynlw04dt5k6
All protocol stuff except for the buffer_length. WTF?

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef PLUGIN_MYSQL_PROTOCOL_OPTIONS_H
21
21
#define PLUGIN_MYSQL_PROTOCOL_OPTIONS_H
22
22
 
23
 
#ifdef  __cplusplus
24
 
extern "C" {
25
 
#endif
 
23
namespace drizzle_plugin
 
24
{
26
25
 
27
26
enum drizzle_option
28
27
{
72
71
};
73
72
 
74
73
 
75
 
#ifdef  __cplusplus
76
 
}
77
 
#endif
78
 
 
79
74
#define CLIENT_NET_READ_TIMEOUT    365*24*3600  /* Timeout on read */
80
75
#define CLIENT_NET_WRITE_TIMEOUT  365*24*3600  /* Timeout on write */
81
76
 
125
120
                                               & ~CLIENT_COMPRESS) \
126
121
                                               & ~CLIENT_SSL_VERIFY_SERVER_CERT)
127
122
 
 
123
} /* namespace drizzle_plugin */
 
124
 
128
125
#endif /* PLUGIN_MYSQL_PROTOCOL_OPTIONS_H */