~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/mysql_protocol.h

Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
{
50
50
protected:
51
51
  const std::string _hostname;
52
 
  bool _using_mysql41_protocol;
53
52
 
54
53
public:
55
 
  ListenMySQLProtocol(std::string name,
56
 
                      const std::string &hostname,
57
 
                      bool using_mysql41_protocol):
 
54
  ListenMySQLProtocol(std::string name, const std::string &hostname) :
58
55
   drizzled::plugin::ListenTcp(name),
59
 
   _hostname(hostname),
60
 
   _using_mysql41_protocol(using_mysql41_protocol)
 
56
   _hostname(hostname)
61
57
  { }
62
58
  virtual const std::string getHost() const;
63
59
  virtual in_port_t getPort() const;