mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
password validation plugin API: renames
This commit is contained in:
@@ -17,9 +17,9 @@
|
||||
/**
|
||||
@file
|
||||
|
||||
Authentication Plugin API.
|
||||
Password Validation Plugin API.
|
||||
|
||||
This file defines the API for server authentication plugins.
|
||||
This file defines the API for server password validation plugins.
|
||||
*/
|
||||
|
||||
#define MYSQL_PLUGIN_PASSWORD_VALIDATION_INCLUDED
|
||||
@@ -31,7 +31,7 @@
|
||||
/**
|
||||
Password validation plugin descriptor
|
||||
*/
|
||||
struct st_mysql_password_validation
|
||||
struct st_mariadb_password_validation
|
||||
{
|
||||
int interface_version; /**< version plugin uses */
|
||||
/**
|
||||
|
@@ -353,7 +353,7 @@ void *thd_get_ha_data(const void* thd, const struct handlerton *hton);
|
||||
void thd_set_ha_data(void* thd, const struct handlerton *hton,
|
||||
const void *ha_data);
|
||||
void thd_wakeup_subsequent_commits(void* thd, int wakeup_error);
|
||||
struct st_mysql_password_validation
|
||||
struct st_mariadb_password_validation
|
||||
{
|
||||
int interface_version;
|
||||
int (*validate_password)(MYSQL_LEX_STRING *username,
|
||||
|
Reference in New Issue
Block a user