pgsql: Add BSD authentication method.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Add BSD authentication method.
Date: 2016-04-08 17:52:17
Message-ID: E1aoaZt-0004Dm-6m@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add BSD authentication method.

Create a "bsd" auth method that works the same as "password" so far as
clients are concerned, but calls the BSD Authentication service to
check the password. This is currently only available on OpenBSD.

Marisa Emerson, reviewed by Thomas Munro

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/34c33a1f00259ce5e3e1d1b4a784037adfca6057

Modified Files
--------------
configure | 48 +++++++++++++++++++++++++++++++++++++
configure.in | 14 +++++++++++
doc/src/sgml/client-auth.sgml | 45 +++++++++++++++++++++++++++++++++++
doc/src/sgml/installation.sgml | 11 +++++++++
src/backend/libpq/auth.c | 54 ++++++++++++++++++++++++++++++++++++++++++
src/backend/libpq/hba.c | 6 +++++
src/bin/initdb/initdb.c | 6 +++++
src/include/libpq/hba.h | 1 +
src/include/pg_config.h.in | 3 +++
src/include/pg_config.h.win32 | 3 +++
10 files changed, 191 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2016-04-08 18:12:25 pgsql: Distrust external OpenSSL clients; clear err queue
Previous Message Robert Haas 2016-04-08 17:49:13 pgsql: Add combine functions for various floating-point aggregates.