Eneboo - Documentación para desarrolladores
|
00001 /*------------------------------------------------------------------------- 00002 * 00003 * auth.h 00004 * Definitions for network authentication routines 00005 * 00006 * 00007 * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group 00008 * Portions Copyright (c) 1994, Regents of the University of California 00009 * 00010 * $PostgreSQL: pgsql/src/include/libpq/auth.h,v 1.31 2005/10/17 16:24:20 tgl Exp $ 00011 * 00012 *------------------------------------------------------------------------- 00013 */ 00014 #ifndef AUTH_H 00015 #define AUTH_H 00016 00017 #include "libpq/libpq-be.h" 00018 00019 extern char *pg_krb_server_keyfile; 00020 extern char *pg_krb_srvnam; 00021 extern bool pg_krb_caseins_users; 00022 extern char *pg_krb_server_hostname; 00023 00024 extern void ClientAuthentication(Port *port); 00025 00026 #endif /* AUTH_H */