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/pqcomm.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/include/libpq/pqcomm.h') diff --git a/src/include/libpq/pqcomm.h b/src/include/libpq/pqcomm.h index 8e66aaa968..ec7427b6de 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.105 2007/07/10 13:14:21 mha Exp $ + * $PostgreSQL: pgsql/src/include/libpq/pqcomm.h,v 1.106 2007/07/23 10:16:54 mha Exp $ * *------------------------------------------------------------------------- */ @@ -158,6 +158,7 @@ extern bool Db_user_namespace; #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 */ +#define AUTH_REQ_SSPI 9 /* SSPI negotiate without wrap() */ typedef uint32 AuthRequest; -- cgit v1.2.1