~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/mysql_protocol.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
  uint32_t client_capabilities;
81
81
  bool is_admin_connection;
82
82
  bool _using_mysql41_protocol;
 
83
  bool _is_interactive;
83
84
 
84
85
  bool checkConnection(void);
85
86
  bool netStoreData(const unsigned char *from, size_t length);
91
92
  ClientMySQLProtocol(int fd, bool _using_mysql41_protocol, ProtocolCounters *set_counters);
92
93
  virtual ~ClientMySQLProtocol();
93
94
 
 
95
  bool isInteractive() const
 
96
  {
 
97
    return _is_interactive;
 
98
  }
 
99
 
 
100
  bool isAdmin() const
 
101
  {
 
102
    return is_admin_connection;
 
103
  }
 
104
 
94
105
  ProtocolCounters *counters;
95
106
 
96
107
  virtual int getFileDescriptor(void);