Fix old header names in modules
Some of the modules still used the gw_authenticator.h name.
This commit is contained in:
@ -4,7 +4,7 @@ This document describes the modular authentication in MaxScale. It contains
|
|||||||
protocol specific information on authentication and how it is handled in
|
protocol specific information on authentication and how it is handled in
|
||||||
MaxScale.
|
MaxScale.
|
||||||
|
|
||||||
The constants described in this document are defined in the gw_authenticator.h
|
The constants described in this document are defined in the authenticator.h
|
||||||
header unless otherwise mentioned.
|
header unless otherwise mentioned.
|
||||||
|
|
||||||
## Authenticator initialization
|
## Authenticator initialization
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file gw_authenticator.h
|
* @file authenticator.h
|
||||||
*
|
*
|
||||||
* The authenticator module interface definitions for MaxScale
|
* The authenticator module interface definitions for MaxScale
|
||||||
*
|
*
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
#define MXS_MODULE_NAME "CDCPlainAuth"
|
#define MXS_MODULE_NAME "CDCPlainAuth"
|
||||||
|
|
||||||
#include <maxscale/gw_authenticator.h>
|
#include <maxscale/authenticator.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <cdc.h>
|
#include <cdc.h>
|
||||||
#include <maxscale/alloc.h>
|
#include <maxscale/alloc.h>
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
#define MXS_MODULE_NAME "GSSAPIAuth"
|
#define MXS_MODULE_NAME "GSSAPIAuth"
|
||||||
|
|
||||||
#include <maxscale/gw_authenticator.h>
|
#include <maxscale/authenticator.h>
|
||||||
#include <maxscale/alloc.h>
|
#include <maxscale/alloc.h>
|
||||||
#include <maxscale/dcb.h>
|
#include <maxscale/dcb.h>
|
||||||
#include <maxscale/log_manager.h>
|
#include <maxscale/log_manager.h>
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
#define MXS_MODULE_NAME "GSSAPIBackendAuth"
|
#define MXS_MODULE_NAME "GSSAPIBackendAuth"
|
||||||
|
|
||||||
#include <maxscale/gw_authenticator.h>
|
#include <maxscale/authenticator.h>
|
||||||
#include <maxscale/alloc.h>
|
#include <maxscale/alloc.h>
|
||||||
#include <maxscale/dcb.h>
|
#include <maxscale/dcb.h>
|
||||||
#include <maxscale/log_manager.h>
|
#include <maxscale/log_manager.h>
|
||||||
|
@ -83,7 +83,7 @@ void auth_backend_destroy(void *data)
|
|||||||
* @param dcb Request handler DCB connected to the client
|
* @param dcb Request handler DCB connected to the client
|
||||||
* @param buffer Buffer containing data from client
|
* @param buffer Buffer containing data from client
|
||||||
* @return Authentication status
|
* @return Authentication status
|
||||||
* @see gw_quthenticator.h
|
* @see authenticator.h
|
||||||
* @see https://dev.mysql.com/doc/internals/en/client-server-protocol.html
|
* @see https://dev.mysql.com/doc/internals/en/client-server-protocol.html
|
||||||
*/
|
*/
|
||||||
static int auth_backend_extract(DCB *dcb, GWBUF *buf)
|
static int auth_backend_extract(DCB *dcb, GWBUF *buf)
|
||||||
@ -119,7 +119,7 @@ static int auth_backend_extract(DCB *dcb, GWBUF *buf)
|
|||||||
*
|
*
|
||||||
* @param dcb Backend DCB
|
* @param dcb Backend DCB
|
||||||
* @return Authentication status
|
* @return Authentication status
|
||||||
* @see gw_authenticator.h
|
* @see authenticator.h
|
||||||
*/
|
*/
|
||||||
static int auth_backend_authenticate(DCB *dcb)
|
static int auth_backend_authenticate(DCB *dcb)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user