~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/drizzle_protocol/options.h

  • Committer: Monty Taylor
  • Date: 2010-03-11 18:27:20 UTC
  • mfrom: (1333 staging)
  • mto: This revision was merged to the branch mainline in revision 1348.
  • Revision ID: mordred@inaugust.com-20100311182720-hd1h87y6cb1b1mp0
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef PLUGIN_DRIZZLE_PROTOCOL_OPTIONS_H
21
21
#define PLUGIN_DRIZZLE_PROTOCOL_OPTIONS_H
22
22
 
23
 
#ifdef  __cplusplus
24
 
extern "C" {
25
 
#endif
 
23
namespace drizzle_protocol
 
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_protocol */
 
124
 
128
125
#endif /* PLUGIN_DRIZZLE_PROTOCOL_OPTIONS_H */