From f70866fb2353dba162fc296f644e7ce77af6d79f Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Mon, 23 Jul 2007 10:16:54 +0000 Subject: SSPI authentication on Windows. GSSAPI compatible client when doing Kerberos against a Unix server, and Windows-specific server-side authentication using SSPI "negotiate" method (Kerberos or NTLM). Only builds properly with MSVC for now. --- src/include/libpq/hba.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/include/libpq/hba.h') diff --git a/src/include/libpq/hba.h b/src/include/libpq/hba.h index b68aa5899b..603d863523 100644 --- a/src/include/libpq/hba.h +++ b/src/include/libpq/hba.h @@ -4,7 +4,7 @@ * Interface to hba.c * * - * $PostgreSQL: pgsql/src/include/libpq/hba.h,v 1.46 2007/07/10 13:14:21 mha Exp $ + * $PostgreSQL: pgsql/src/include/libpq/hba.h,v 1.47 2007/07/23 10:16:54 mha Exp $ * *------------------------------------------------------------------------- */ @@ -23,7 +23,8 @@ typedef enum UserAuth uaPassword, uaCrypt, uaMD5, - uaGSS + uaGSS, + uaSSPI #ifdef USE_PAM ,uaPAM #endif /* USE_PAM */ -- cgit v1.2.1