You have neverending loo while authentication through proxy
```
Session.cs
while (true)
{
...
switch (statusCode)
{
case HttpStatusCode.OK:
break;
default:
throw new ProxyException(string.Format("HTTP: Status code {0}, \"{1}\"", statusCode, statusCode));
}
}
```
This break end switch but not while loop.
Fastest way is just to replace "break" with "return"
Please fix It.
Can I do smt to make this request faster?
Comments: ** Comment from web user: drieseng **
```
Session.cs
while (true)
{
...
switch (statusCode)
{
case HttpStatusCode.OK:
break;
default:
throw new ProxyException(string.Format("HTTP: Status code {0}, \"{1}\"", statusCode, statusCode));
}
}
```
This break end switch but not while loop.
Fastest way is just to replace "break" with "return"
Please fix It.
Can I do smt to make this request faster?
Comments: ** Comment from web user: drieseng **
This is a duplicate of https://sshnet.codeplex.com/workitem/1890.
The fix is trivial, but I first want to increase test coverage as this issue show it surely lacks in this area.