Quantcast
Viewing all articles
Browse latest Browse all 1026

Edited Issue: HTTP proxy hangs [1890]

When connecting to an http proxy the Session.ConnectHttp() method gets stuck in an endless loop.

this is due to the following code::

switch (statusCode)
{
case HttpStatusCode.OK:
break;
default:
throw new ProxyException(string.Format("HTTP: Status code {0}, \"{1}\"", statusCode, statusCode));
}

which should be

switch (statusCode)
{
case HttpStatusCode.OK:
return_;
default:
throw new ProxyException(string.Format("HTTP: Status code {0}, \"{1}\"", statusCode, statusCode));
}
Comments: ** Comment from web user: drieseng **

Fixed in changeset 34706.
I'll talk to Oleg about the possibility to release a new version of SSH.NET.


Viewing all articles
Browse latest Browse all 1026

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>