259
by Brian Aker
First pass on PAM auth |
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 */ |