~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/auth_http/auth_http.cc

Merged in some naming things.

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
  NULL, /* update func*/
166
166
  "http://localhost/" /* default */);
167
167
 
168
 
static struct st_mysql_sys_var* auth_http_system_variables[]= {
 
168
static drizzle_sys_var* auth_http_system_variables[]= {
169
169
  DRIZZLE_SYSVAR(enable),
170
170
  DRIZZLE_SYSVAR(url),
171
171
  NULL
172
172
};
173
173
 
174
174
 
175
 
drizzle_declare_plugin
 
175
DRIZZLE_DECLARE_PLUGIN
176
176
{
177
177
  "auth_http",
178
178
  "0.1",
185
185
  auth_http_system_variables,
186
186
  NULL    /* config options */
187
187
}
188
 
drizzle_declare_plugin_end;
 
188
DRIZZLE_DECLARE_PLUGIN_END;