psql: Make SSL info display more compact

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема psql: Make SSL info display more compact
Дата
Msg-id aee28ee7-0ab3-c2e2-5bed-109feb0c089b@enterprisedb.com
обсуждение исходный текст
Ответы Re: psql: Make SSL info display more compact  (Daniel Gustafsson <daniel@yesql.se>)
Список 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.
Вложения

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Brar Piening
Дата:
Сообщение: Re: Add id's to various elements in protocol.sgml
Следующее
От: Daniel Gustafsson
Дата:
Сообщение: Re: psql: Make SSL info display more compact