pgsql: Instead of a bare recv() to read the server's response to an SSL

Поиск
Список
Период
Сортировка
От tgl@svr1.postgresql.org (Tom Lane)
Тема pgsql: Instead of a bare recv() to read the server's response to an SSL
Дата
Msg-id 20050106200659.23FD53A4B06@svr1.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Log Message:
-----------
Instead of a bare recv() to read the server's response to an SSL
request packet, use pqReadData().  This has the same effect since
conn->ssl isn't set yet and we aren't expecting more than one byte.
The advantage is that we will correctly detect loss-of-connection
instead of going into an infinite loop.  Per report from Hannu Krosing.

Modified Files:
--------------
    pgsql/src/interfaces/libpq:
        fe-connect.c (r1.297 -> r1.298)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/fe-connect.c.diff?r1=1.297&r2=1.298)

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

Предыдущее
От: tgl@svr1.postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql: Adjust lookup of client-side profile files (.pgpass and so on) as
Следующее
От: tgl@svr1.postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql: Adjust examples to avoid using keywords as identifiers, per Honda