Fix obsolete comment regarding FSM truncation.
[PostgreSQL.git] / src / include / libpq / auth.h
blob1498ab0e35515f942f2cb127da5cf457a6409918
1 /*-------------------------------------------------------------------------
3 * auth.h
4 * Definitions for network authentication routines
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef AUTH_H
15 #define AUTH_H
17 #include "libpq/libpq-be.h"
19 extern char *pg_krb_server_keyfile;
20 extern char *pg_krb_srvnam;
21 extern bool pg_krb_caseins_users;
22 extern char *pg_krb_server_hostname;
23 extern char *pg_krb_realm;
25 extern void ClientAuthentication(Port *port);
27 #endif /* AUTH_H */