Eneboo - Documentación para desarrolladores
|
00001 /*------------------------------------------------------------------------- 00002 * 00003 * fe-auth.h 00004 * 00005 * Definitions for network authentication routines 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/interfaces/libpq/fe-auth.h,v 1.23.2.1 2005/11/22 18:23:29 momjian Exp $ 00011 * 00012 *------------------------------------------------------------------------- 00013 */ 00014 #ifndef FE_AUTH_H 00015 #define FE_AUTH_H 00016 00017 #include "libpq-fe.h" 00018 #include "libpq-int.h" 00019 00020 00021 extern int pg_fe_sendauth(AuthRequest areq, PGconn *conn, const char *hostname, 00022 const char *password, char *PQerrormsg); 00023 extern char *pg_fe_getauthname(char *PQerrormsg); 00024 00025 #endif /* FE_AUTH_H */