aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-12-22 15:04:59 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-12-22 15:04:59 +0000
commitbedc61ac45394eec850edfdae43a55c8586c3017 (patch)
tree8ef8bbd99f2a20cb16164224ca6125f26a0510d1 /CHANGES
parent61a6992559ecf6719a077399eaf6050862bbfc6f (diff)
- Robert Foreman provided a prime example snippet showing how libcurl would
get confused and not acknowledge the 'no_proxy' variable properly once it had used the proxy and you re-used the same easy handle. I made sure the proxy name is properly stored in the connect struct rather than the sessionhandle/easy struct.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index ebab24763..208b717ea 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,12 @@
Changelog
Daniel (22 December 2006)
+- Robert Foreman provided a prime example snippet showing how libcurl would
+ get confused and not acknowledge the 'no_proxy' variable properly once it
+ had used the proxy and you re-used the same easy handle. I made sure the
+ proxy name is properly stored in the connect struct rather than the
+ sessionhandle/easy struct.
+
- David McCreedy fixed a bad call to getsockname() that wrongly used a size_t
variable to point to when it should be a socklen_t.