~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/options.h

mergeĀ lp:~linuxjedi/drizzle/trunk-remove-drizzleadmin

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
#define CLIENT_MULTI_RESULTS    (1UL << 17) /* Enable/disable multi-results */
90
90
#define CLIENT_CAPABILITIES_PLUGIN_AUTH (1 << 19)
91
91
 
92
 
#define CLIENT_ADMIN            (1UL << 25) /* Admin client connection */
93
 
 
94
92
#define CLIENT_SSL_VERIFY_SERVER_CERT (1UL << 30)
95
93
#define CLIENT_REMEMBER_OPTIONS (1UL << 31)
96
94
 
112
110
                           CLIENT_MULTI_STATEMENTS | \
113
111
                           CLIENT_MULTI_RESULTS | \
114
112
                           CLIENT_CAPABILITIES_PLUGIN_AUTH | \
115
 
                           CLIENT_ADMIN | \
116
113
                           CLIENT_SSL_VERIFY_SERVER_CERT | \
117
114
                           CLIENT_REMEMBER_OPTIONS)
118
115