Re: [HACKERS] pq_eof() broken with SSL

2002-05-19 Thread Bear Giles
> > a better fix is to explicitly create a new abstraction layer. > > Well, this is supposed to be an abstraction already. ;-) The new abstraction layer would localize SSL vs. plain sockets, and possibly SASL as well. The SSL issues I've identified to date are: critical - no check for SSL_g

Re: [HACKERS] pq_eof() broken with SSL

2002-05-19 Thread Peter Eisentraut
Bear Giles writes: > I came across another bug in the SSL code. backend/libpq/pqcomm.c:pq_eof() > calls recv() to read a single byte of data to check for EOF. The > character is then stuffed into the read buffer. > The quick fix is to add another USE_SSL block, So it seems. Do you volunteer