diff options
| author | Magnus Hagander | 2008-11-20 11:48:26 +0000 |
|---|---|---|
| committer | Magnus Hagander | 2008-11-20 11:48:26 +0000 |
| commit | f179d5ea99b4598689e5aefed376874b68110978 (patch) | |
| tree | f3af4e57ce35be33afe3839c9341f81c7c7367e3 /src/include | |
| parent | 3c486fbd1c8e8f79902a40ef929c4ed54f122561 (diff) | |
Add support for using SSL client certificates to authenticate to the
database (only for SSL connections, obviously).
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/libpq/hba.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/libpq/hba.h b/src/include/libpq/hba.h index cf5942a2668..87d04640e4b 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.52 2008/11/20 09:29:36 mha Exp $ + * $PostgreSQL: pgsql/src/include/libpq/hba.h,v 1.53 2008/11/20 11:48:26 mha Exp $ * *------------------------------------------------------------------------- */ @@ -26,7 +26,8 @@ typedef enum UserAuth uaGSS, uaSSPI, uaPAM, - uaLDAP + uaLDAP, + uaCert } UserAuth; typedef enum ConnType |
