summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-08-07 20:24:50 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-08-07 20:24:50 +0000
commitfc480a741f5d10b204c08d5334fbb6ecda2c6612 (patch)
tree392cd67b17b6c1c9e9d47bbdf101ea2b248a6b87 /CHANGES
parent2f88d5a7009212db7ec3ad5a60bd69e44850e67a (diff)
downloadlibapr-fc480a741f5d10b204c08d5334fbb6ecda2c6612.tar.gz
Non-blocking connects shouldn't be calling connect a second
time. According to Single Unix, a non-blocking connect has succeeded when the select pops successfully. It has failed if the select failed. The second connect was causing 502's in the httpd-proxy. Submitted by: John Barbee barbee@veribox.net Reviewed by: Ryan Bloom git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62124 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 69b8e5f61..1d633b7f0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,11 @@
Changes with APR b1
+ *) Non-blocking connects shouldn't be calling connect a second
+ time. According to Single Unix, a non-blocking connect has
+ succeeded when the select pops successfully. It has failed
+ if the select failed. The second connect was causing 502's
+ in the httpd-proxy. [John Barbee barbee@veribox.net]
+
*) Fix apr_dir_rewind() for Win32 to avoid returning a bogus error.
[Jeff Trawick, William Rowe]