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