~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_unix_socket_protocol/protocol.h

  • Committer: Andrew Hutchings
  • Date: 2011-06-07 21:19:19 UTC
  • mto: This revision was merged to the branch mainline in revision 2327.
  • Revision ID: andrew@linuxjedi.co.uk-20110607211919-7ef8spt1qkefxoyx
Remove all drizzleadmin code (hopefully)

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
public:
62
62
  ClientMySQLUnixSocketProtocol(int fd, bool __using_mysql41_protocol, ProtocolCounters *set_counters): ClientMySQLProtocol(fd, __using_mysql41_protocol, set_counters) {}
63
63
 
64
 
  /* Unix socket protocol is for MySQL compatibility so do not allow admin connections */
65
 
  bool isAdminAllowed(void) { return false; }
66
64
};
67
65
 
68
66