~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/oldlibdrizzle.cc

MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
823
823
static DRIZZLE_SYSVAR_STR(bind_address, bind_address, PLUGIN_VAR_READONLY,
824
824
                          N_("Address to bind to."), NULL, NULL, NULL);
825
825
 
826
 
static struct st_mysql_sys_var* system_variables[]= {
 
826
static drizzle_sys_var* system_variables[]= {
827
827
  DRIZZLE_SYSVAR(port),
828
828
  DRIZZLE_SYSVAR(connect_timeout),
829
829
  DRIZZLE_SYSVAR(read_timeout),
834
834
  NULL
835
835
};
836
836
 
837
 
drizzle_declare_plugin
 
837
DRIZZLE_DECLARE_PLUGIN
838
838
{
839
839
  "mysql_protocol",
840
840
  "0.1",
847
847
  system_variables, /* system variables */
848
848
  NULL              /* config options */
849
849
}
850
 
drizzle_declare_plugin_end;
 
850
DRIZZLE_DECLARE_PLUGIN_END;