~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

Cleaned up Protocol plugin interface (now a class factory) and moved libdrizzlclient to oldlibdrizzle to be clear.

Show diffs side-by-side

added added

removed removed

Lines of Context:
249
249
bool volatile shutdown_in_progress;
250
250
uint32_t max_used_connections;
251
251
const char *opt_scheduler= "multi_thread";
252
 
const char *opt_protocol= "libdrizzleclient";
 
252
const char *opt_protocol= "oldlibdrizzle";
253
253
 
254
254
size_t my_thread_stack_size= 65536;
255
255
 
2432
2432
   (char**) &max_system_variables.preload_buff_size, 0, GET_ULL,
2433
2433
   REQUIRED_ARG, 32*1024L, 1024, 1024*1024*1024L, 0, 1, 0},
2434
2434
  {"protocol", OPT_SCHEDULER,
2435
 
   N_("Select protocol to be used (by default libdrizzleclient)."),
 
2435
   N_("Select protocol to be used (by default oldlibdrizzle)."),
2436
2436
   (char**) &opt_protocol, (char**) &opt_protocol, 0,
2437
2437
   GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
2438
2438
  {"query_alloc_block_size", OPT_QUERY_ALLOC_BLOCK_SIZE,