aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-08-11 23:15:41 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-08-11 23:15:41 +0000
commit27619fc450599bf6c0a152dd9206d8559603fc15 (patch)
treeba8a267f5815f42c5a05e2c946e0e6752f3fe1de /lib/http.c
parent96fecba190b3968a2c076272e3cd80834dd66e66 (diff)
Added support for CURLINFO_HTTP_CONNECTCODE
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/http.c b/lib/http.c
index 35f795725..90dc5a63b 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -556,6 +556,8 @@ CURLcode Curl_ConnectHTTPProxyTunnel(struct connectdata *conn,
if(error)
return CURLE_RECV_ERROR;
+ data->info.httpproxycode = httperror;
+
if(200 != httperror) {
if(407 == httperror)
/* Added Nov 6 1998 */