~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-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

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