psql: Make SSL info display more compact - Mailing list pgsql-hackers

From Peter Eisentraut
Subject psql: Make SSL info display more compact
Date
Msg-id aee28ee7-0ab3-c2e2-5bed-109feb0c089b@enterprisedb.com
Whole thread Raw
Responses Re: psql: Make SSL info display more compact  (Daniel Gustafsson <daniel@yesql.se>)
List pgsql-hackers
Currently, when you connect with psql over SSL, you get a display like
this:

psql (15devel)
SSL connection (protocol: TLSv1.3, cipher: TLS_AES_256_GCM_SHA384, bits: 256, compression: off)
Type "help" for help.

Since support for SSL compression has been removed from PostgreSQL, it
doesn't seem sensible to display it anymore.  And while we're there, I
think the bits information is redundant, since it can be derived from
the cipher suite, either because it's part of the name (as in the
example) or by looking it up somewhere.  So I propose that we make this
display a bit more compact like this:

psql (15devel)
SSL connection (protocol: TLSv1.3, cipher: TLS_AES_256_GCM_SHA384)
Type "help" for help.

See attached patch.
Attachment

pgsql-hackers by date:

Previous
From: Brar Piening
Date:
Subject: Re: Add id's to various elements in protocol.sgml
Next
From: Daniel Gustafsson
Date:
Subject: Re: psql: Make SSL info display more compact