~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/options.h

  • Committer: Brian Aker
  • Date: 2011-02-27 04:21:54 UTC
  • mto: (2215.6.2 drizzle-trunk)
  • mto: This revision was merged to the branch mainline in revision 2231.
  • Revision ID: brian@tangent.org-20110227042154-mn2wtbd7rraphswo
First pass through in going over work for MySQL AUTH PLUGIN style support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
#define CLIENT_SECURE_CONNECTION 32768  /* New 4.1 authentication */
89
89
#define CLIENT_MULTI_STATEMENTS (1UL << 16) /* Enable/disable multi-stmt support */
90
90
#define CLIENT_MULTI_RESULTS    (1UL << 17) /* Enable/disable multi-results */
 
91
#define CLIENT_CAPABILITIES_PLUGIN_AUTH (1 << 19)
91
92
 
92
93
#define CLIENT_ADMIN            (1UL << 25) /* Admin client connection */
93
94
 
111
112
                           CLIENT_SECURE_CONNECTION | \
112
113
                           CLIENT_MULTI_STATEMENTS | \
113
114
                           CLIENT_MULTI_RESULTS | \
 
115
                           CLIENT_CAPABILITIES_PLUGIN_AUTH | \
114
116
                           CLIENT_ADMIN | \
115
117
                           CLIENT_SSL_VERIFY_SERVER_CERT | \
116
118
                           CLIENT_REMEMBER_OPTIONS)