~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/options.h

  • Committer: Andrew Hutchings
  • Date: 2011-06-07 21:19:19 UTC
  • mto: This revision was merged to the branch mainline in revision 2327.
  • Revision ID: andrew@linuxjedi.co.uk-20110607211919-7ef8spt1qkefxoyx
Remove all drizzleadmin code (hopefully)

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