This is auth.h in view mode; [Download] [Up]
/*---------------------------------------------------------------- * FILE * auth.h * * DESCRIPTION * Definitions for network authentication routines * * NOTES * * IDENTIFICATION * /usr/local/devel/postgres-v4r2/src/backend/libpq/RCS/auth.h,v 1.3 1994/02/07 11:56:31 aoki Exp *---------------------------------------------------------------- */ #ifndef AuthIncluded /* Include this file only once */ #define AuthIncluded 1 #include "tmp/c.h" #include "tmp/pqcomm.h" /*---------------------------------------------------------------- * Common routines and definitions *---------------------------------------------------------------- */ /* what we call "no authentication system" */ #define UNAUTHNAME "unauth" /* what a frontend uses by default */ #if !defined(KRB4) && !defined(KRB5) #define DEFAULT_CLIENT_AUTHSVC UNAUTHNAME #else /* KRB4 || KRB5 */ #define DEFAULT_CLIENT_AUTHSVC "kerberos" #endif /* KRB4 || KRB5 */ extern fe_sendauth ARGS((MsgType msgtype, Port *port, char *hostname)); extern char *fe_getauthname ARGS((void)); extern void fe_setauthsvc ARGS((char *name)); extern MsgType fe_getauthsvc ARGS((void)); extern be_recvauth ARGS((MsgType msgtype, Port *port, char *username)); extern void be_setauthsvc ARGS((char *name)); extern int be_getauthsvc ARGS((MsgType msgtype)); #define PG_KRB4_VERSION "PGVER4.1" /* at most KRB_SENDAUTH_VLEN chars */ #define PG_KRB5_VERSION "PGVER5.1" #endif /* !defined(AuthIncluded) */
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.