diff options
| author | Magnus Hagander <magnus@hagander.net> | 2007-07-10 13:14:22 +0000 |
|---|---|---|
| committer | Magnus Hagander <magnus@hagander.net> | 2007-07-10 13:14:22 +0000 |
| commit | 6160106c7495509310b709ee320b55cea8a60928 (patch) | |
| tree | 3a1be553f436ebf563d6ec4aaae3eff42d615db9 /src/include/libpq/pqcomm.h | |
| parent | ff481ca0d463d33246a331c92bdf3dfc018c24eb (diff) | |
| download | postgresql-6160106c7495509310b709ee320b55cea8a60928.tar.gz | |
Add support for GSSAPI authentication.
Documentation still being written, will be committed later.
Henry B. Hotz and Magnus Hagander
Diffstat (limited to 'src/include/libpq/pqcomm.h')
| -rw-r--r-- | src/include/libpq/pqcomm.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/libpq/pqcomm.h b/src/include/libpq/pqcomm.h index 50118e4d94..8e66aaa968 100644 --- a/src/include/libpq/pqcomm.h +++ b/src/include/libpq/pqcomm.h @@ -9,7 +9,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/libpq/pqcomm.h,v 1.104 2007/07/08 18:28:55 tgl Exp $ + * $PostgreSQL: pgsql/src/include/libpq/pqcomm.h,v 1.105 2007/07/10 13:14:21 mha Exp $ * *------------------------------------------------------------------------- */ @@ -156,6 +156,8 @@ extern bool Db_user_namespace; #define AUTH_REQ_CRYPT 4 /* crypt password */ #define AUTH_REQ_MD5 5 /* md5 password */ #define AUTH_REQ_SCM_CREDS 6 /* transfer SCM credentials */ +#define AUTH_REQ_GSS 7 /* GSSAPI without wrap() */ +#define AUTH_REQ_GSS_CONT 8 /* Continue GSS exchanges */ typedef uint32 AuthRequest; |
