Mercurial > p > roundup > code
diff CHANGES.txt @ 4273:0a684518d609
More SSL fixes.
SSL wants the underlying socket non-blocking. So we don't call
socket.setdefaulttimeout in case of SSL. This apparently now never
raises a WantReadError from SSL. This also fixes a case where a
WantReadError is raised and apparently the bytes already read are
dropped (seems the WantReadError is really an error, not just an
indication to retry).
| author | Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net> |
|---|---|
| date | Tue, 13 Oct 2009 09:05:21 +0000 |
| parents | ffc6fa77e551 |
| children | b16dc285ba2d |
line wrap: on
line diff
--- a/CHANGES.txt Tue Oct 13 07:07:19 2009 +0000 +++ b/CHANGES.txt Tue Oct 13 09:05:21 2009 +0000 @@ -1,6 +1,16 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. +2009-XX-XX 1.4.XX (rXXXX) + +Fixes: +- More SSL fixes. SSL wants the underlying socket non-blocking. So we + don't call socket.setdefaulttimeout in case of SSL. This apparently + never raises a WantReadError from SSL. + This also fixes a case where a WantReadError is raised and apparently + the bytes already read are dropped (seems the WantReadError is really + an error, not just an indication to retry). + 2009-10-09 1.4.10 (r4374) Fixes:
