~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/options.h

  • Committer: Brian Aker
  • Date: 2010-12-07 09:12:12 UTC
  • mto: This revision was merged to the branch mainline in revision 1985.
  • Revision ID: brian@tangent.org-20101207091212-1m0w20tck6z7632m
This is a fix for bug lp:686197

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
#define CLIENT_PROTOCOL_MYSQL41 512     /* New 4.1 protocol */
86
86
#define CLIENT_SSL              2048    /* Switch to SSL after handshake */
87
87
#define CLIENT_IGNORE_SIGPIPE   4096    /* IGNORE sigpipes */
88
 
#define CLIENT_TRANSACTIONS     8192    /* Support transactions */
89
88
#define CLIENT_RESERVED         16384   /* Old flag for 4.1 protocol  */
90
89
#define CLIENT_SECURE_CONNECTION 32768  /* New 4.1 authentication */
91
90
#define CLIENT_MULTI_STATEMENTS (1UL << 16) /* Enable/disable multi-stmt support */
92
91
#define CLIENT_MULTI_RESULTS    (1UL << 17) /* Enable/disable multi-results */
93
92
 
94
 
#define CLIENT_ADMIN            (1UL << 25) /* Admin client connection */
95
 
 
96
93
#define CLIENT_SSL_VERIFY_SERVER_CERT (1UL << 30)
97
94
#define CLIENT_REMEMBER_OPTIONS (1UL << 31)
98
95
 
107
104
                           CLIENT_IGNORE_SPACE | \
108
105
                           CLIENT_SSL | \
109
106
                           CLIENT_IGNORE_SIGPIPE | \
110
 
                           CLIENT_TRANSACTIONS | \
111
107
                           CLIENT_RESERVED | \
112
108
                           CLIENT_SECURE_CONNECTION | \
113
109
                           CLIENT_MULTI_STATEMENTS | \
114
110
                           CLIENT_MULTI_RESULTS | \
115
 
                           CLIENT_ADMIN | \
116
111
                           CLIENT_SSL_VERIFY_SERVER_CERT | \
117
112
                           CLIENT_REMEMBER_OPTIONS)
118
113