mirror of
https://github.com/postgres/postgres.git
synced 2025-09-05 02:22:28 +03:00
comment line where output as too long, and update typedefs for /lib directory. Also fix case where identifiers were used as variable names in the backend, but as typedefs in ecpg (favor the backend for indenting). Backpatch to 8.1.X.
26 lines
763 B
C
26 lines
763 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* fe-auth.h
|
|
*
|
|
* Definitions for network authentication routines
|
|
*
|
|
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-auth.h,v 1.24 2005/11/22 18:17:32 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef FE_AUTH_H
|
|
#define FE_AUTH_H
|
|
|
|
#include "libpq-fe.h"
|
|
#include "libpq-int.h"
|
|
|
|
|
|
extern int pg_fe_sendauth(AuthRequest areq, PGconn *conn, const char *hostname,
|
|
const char *password, char *PQerrormsg);
|
|
extern char *pg_fe_getauthname(char *PQerrormsg);
|
|
|
|
#endif /* FE_AUTH_H */
|