~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/options.h

  • Committer: Brian Aker
  • Date: 2011-01-10 02:13:14 UTC
  • mto: This revision was merged to the branch mainline in revision 2069.
  • Revision ID: brian@tangent.org-20110110021314-dye0guuovwz4oi3j
Formattting, etc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
};
72
72
 
73
73
 
 
74
#define CLIENT_NET_READ_TIMEOUT    365*24*3600  /* Timeout on read */
 
75
#define CLIENT_NET_WRITE_TIMEOUT  365*24*3600  /* Timeout on write */
 
76
 
74
77
#define CLIENT_LONG_PASSWORD    1       /* new more secure passwords */
75
78
#define CLIENT_FOUND_ROWS       2       /* Found instead of affected rows */
76
79
#define CLIENT_LONG_FLAG        4       /* Get all column flags */
82
85
#define CLIENT_PROTOCOL_MYSQL41 512     /* New 4.1 protocol */
83
86
#define CLIENT_SSL              2048    /* Switch to SSL after handshake */
84
87
#define CLIENT_IGNORE_SIGPIPE   4096    /* IGNORE sigpipes */
85
 
#define CLIENT_TRANSACTIONS     8192    /* Support transactions */
86
88
#define CLIENT_RESERVED         16384   /* Old flag for 4.1 protocol  */
87
89
#define CLIENT_SECURE_CONNECTION 32768  /* New 4.1 authentication */
88
90
#define CLIENT_MULTI_STATEMENTS (1UL << 16) /* Enable/disable multi-stmt support */
104
106
                           CLIENT_IGNORE_SPACE | \
105
107
                           CLIENT_SSL | \
106
108
                           CLIENT_IGNORE_SIGPIPE | \
107
 
                           CLIENT_TRANSACTIONS | \
108
109
                           CLIENT_RESERVED | \
109
110
                           CLIENT_SECURE_CONNECTION | \
110
111
                           CLIENT_MULTI_STATEMENTS | \