pgsql: Refactor SASL exchange to return tri-state status

From: Daniel Gustafsson <dgustafsson(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Refactor SASL exchange to return tri-state status
Date: 2024-03-21 14:08:55
Message-ID: E1rnJ6F-004wul-Ak@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Refactor SASL exchange to return tri-state status

The SASL exchange callback returned state in to output variables:
done and success. This refactors that logic by introducing a new
return variable of type SASLStatus which makes the code easier to
read and understand, and prepares for future SASL exchanges which
operate asynchronously.

This was extracted from a larger patchset to introduce OAuthBearer
authentication and authorization.

Author: Jacob Champion <jacob(dot)champion(at)enterprisedb(dot)com>
Discussion: https://postgr.es/m/d1b467a78e0e36ed85a09adf979d04cf124a9d4b.camel@vmware.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/24178e235ea56aca9233e640dd7ff9b17e858b07

Modified Files
--------------
src/interfaces/libpq/fe-auth-sasl.h | 31 +++++++++-----
src/interfaces/libpq/fe-auth-scram.c | 78 +++++++++++++++++-------------------
src/interfaces/libpq/fe-auth.c | 28 ++++++-------
src/tools/pgindent/typedefs.list | 1 +
4 files changed, 71 insertions(+), 67 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Nathan Bossart 2024-03-21 15:19:03 pgsql: Revise the style of a paragraph in README.md.
Previous Message David Rowley 2024-03-21 08:21:34 pgsql: Temporarily install debugging in partition_prune test