~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/options.h

  • Committer: Lee Bieber
  • Date: 2011-02-24 03:20:47 UTC
  • mfrom: (2196.1.4 build)
  • Revision ID: kalebral@gmail.com-20110224032047-avmw06iwww3m73cw
Merge Andrew - 723653: Docs day first pass fixes 
Merge Brian - Puts back in support for COM_KILL, Also adds back in the INTERACTIVE flag, and creates a DD to track sessions/check on usage
Merge Olaf - Use List::size()

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
#define CLIENT_ODBC             64      /* Odbc client */
81
81
#define CLIENT_IGNORE_SPACE     256     /* Ignore spaces before '(' */
82
82
#define CLIENT_PROTOCOL_MYSQL41 512     /* New 4.1 protocol */
 
83
#define CLIENT_INTERACTIVE      1024
83
84
#define CLIENT_SSL              2048    /* Switch to SSL after handshake */
84
85
#define CLIENT_IGNORE_SIGPIPE   4096    /* IGNORE sigpipes */
85
86
#define CLIENT_TRANSACTIONS     8192    /* Support transactions */
102
103
                           CLIENT_COMPRESS | \
103
104
                           CLIENT_ODBC | \
104
105
                           CLIENT_IGNORE_SPACE | \
 
106
                           CLIENT_INTERACTIVE | \
105
107
                           CLIENT_SSL | \
106
108
                           CLIENT_IGNORE_SIGPIPE | \
107
109
                           CLIENT_TRANSACTIONS | \