~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_authentication.h

  • 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:
 
1
/*
 
2
  Definitions required for Authentication plugin 
 
3
*/
 
4
 
 
5
#ifndef DRIZZLED_PLUGIN_AUTHENTICATION_H
 
6
#define DRIZZLED_PLUGIN_AUTHENTICATION_H
 
7
 
 
8
typedef struct authentication_st
 
9
{
 
10
  bool (*authenticate)(THD *thd, const char *password);
 
11
} authentication_st;
 
12
 
 
13
#endif /* DRIZZLED_PLUGIN_AUTHENTICATION_H */