~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_plugin.cc

  • Committer: Brian Aker
  • Date: 2008-08-03 22:14:59 UTC
  • Revision ID: brian@tangent.org-20080803221459-gz8on1zlp22dbr9d
First pass on PAM auth

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
#include "mysql_priv.h"
17
17
#include <mysys/my_pthread.h>
18
18
#include <mysys/my_getopt.h>
 
19
#include <authentication.h>
19
20
#define REPORT_TO_LOG  1
20
21
#define REPORT_TO_USER 2
21
22
 
63
64
  0,  /* UDA */
64
65
  0,  /* Audit */
65
66
  0,  /* Logger */
66
 
  0  /* Auth */
 
67
  authentication_initializer  /* Auth */
67
68
};
68
69
 
69
70
plugin_type_init plugin_type_deinitialize[MYSQL_MAX_PLUGIN_TYPE_NUM]=
75
76
  0,  /* UDA */
76
77
  0,  /* Audit */
77
78
  0,  /* Logger */
78
 
  0  /* Auth */
 
79
  authentication_finalizer  /* Auth */
79
80
};
80
81
 
81
82
static const char *plugin_declarations_sym= "_mysql_plugin_declarations_";