~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/drizzle_protocol/drizzle_protocol.cc

Merged in innodb changes. Fixed the buffer pool size default.

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
{