~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/drizzle_protocol/drizzle_protocol.cc

  • Committer: Monty Taylor
  • Date: 2010-08-17 02:54:36 UTC
  • mfrom: (1711.1.7 build)
  • Revision ID: mordred@inaugust.com-20100817025436-iuuqihjal6ubyffy
boost::program_options for InnoDB.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
static uint32_t write_timeout;
57
57
static uint32_t retry_count;
58
58
static uint32_t buffer_length;
59
 
static char* bind_address;
 
59
static char* bind_address= NULL;
 
60
 
 
61
ListenDrizzleProtocol::~ListenDrizzleProtocol()
 
62
{
 
63
  /* This is strdup'd from the options */
 
64
  free(bind_address);
 
65
}
60
66
 
61
67
const char* ListenDrizzleProtocol::getHost(void) const
62
68
{