Fix failure to verify PGC_[SU_]BACKEND GUCs in pg_file_settings view.
[pgsql.git] / src / include / libpq / auth.h
blob405fd43487b02330e40f3d39bc2f6207b224fa7a
1 /*-------------------------------------------------------------------------
3 * auth.h
4 * Definitions for network authentication routines
7 * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/libpq/auth.h
12 *-------------------------------------------------------------------------
14 #ifndef AUTH_H
15 #define AUTH_H
17 #include "libpq/libpq-be.h"
19 extern char *pg_krb_server_keyfile;
20 extern bool pg_krb_caseins_users;
21 extern char *pg_krb_realm;
23 extern void ClientAuthentication(Port *port);
25 /* Hook for plugins to get control in ClientAuthentication() */
26 typedef void (*ClientAuthentication_hook_type) (Port *, int);
27 extern PGDLLIMPORT ClientAuthentication_hook_type ClientAuthentication_hook;
29 #endif /* AUTH_H */