fe-auth.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * fe-auth.h
  4.  *
  5.  *   Definitions for network authentication routines
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: fe-auth.h,v 1.10 1998/09/01 04:40:03 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef FE_AUTH_H
  14. #define FE_AUTH_H
  15. #include "libpq-fe.h"
  16. #include "libpq-int.h"
  17. /*----------------------------------------------------------------
  18.  * Common routines and definitions
  19.  *----------------------------------------------------------------
  20.  */
  21. /* what we call "no authentication system" */
  22. #define UNAUTHNAME "unauth"
  23. /* what a frontend uses by default */
  24. #if !defined(KRB4) && !defined(KRB5)
  25. #define DEFAULT_CLIENT_AUTHSVC UNAUTHNAME
  26. #else /* KRB4 || KRB5 */
  27. #define DEFAULT_CLIENT_AUTHSVC "kerberos"
  28. #endif  /* KRB4 || KRB5 */
  29. extern int fe_sendauth(AuthRequest areq, PGconn *conn, const char *hostname,
  30. const char *password, char *PQerrormsg);
  31. extern MsgType fe_getauthsvc(char *PQerrormsg);
  32. extern void fe_setauthsvc(const char *name, char *PQerrormsg);
  33. extern char *fe_getauthname(char *PQerrormsg);
  34. #define PG_KRB4_VERSION "PGVER4.1" /* at most KRB_SENDAUTH_VLEN chars */
  35. #define PG_KRB5_VERSION "PGVER5.1"
  36. #endif  /* FE_AUTH_H */