Commit 7e2c1b2d authored by titanium007's avatar titanium007

Fix readme

parent caf4e612
...@@ -12,11 +12,6 @@ Features ...@@ -12,11 +12,6 @@ Features
* Supports script injection * Supports script injection
* Async using HTTPWebRequest class for better performance * Async using HTTPWebRequest class for better performance
Outstanding Issues!
=================
* Stackoverflow/Performance degradation occurs on long run
Usage Usage
===== =====
......
...@@ -355,6 +355,8 @@ namespace Titanium.Web.Proxy ...@@ -355,6 +355,8 @@ namespace Titanium.Web.Proxy
args.ProxyRequest.BeginGetResponse(new AsyncCallback(HandleHttpSessionResponse), args); args.ProxyRequest.BeginGetResponse(new AsyncCallback(HandleHttpSessionResponse), args);
} }
}
//Now read the next request (if keep-Alive is enabled, otherwise exit this thread) //Now read the next request (if keep-Alive is enabled, otherwise exit this thread)
//If client is pipeling the request, this will be immediately hit before response for previous request was made //If client is pipeling the request, this will be immediately hit before response for previous request was made
if (args.ProxyRequest.KeepAlive) if (args.ProxyRequest.KeepAlive)
...@@ -372,8 +374,6 @@ namespace Titanium.Web.Proxy ...@@ -372,8 +374,6 @@ namespace Titanium.Web.Proxy
Task.Factory.StartNew(() => HandleHttpSessionRequest(Client, httpCmd, args.ClientStream, args.tunnelHostName, requestLines, args.ClientStreamReader, args.securehost)); Task.Factory.StartNew(() => HandleHttpSessionRequest(Client, httpCmd, args.ClientStream, args.tunnelHostName, requestLines, args.ClientStreamReader, args.securehost));
} }
} }
}
catch (IOException) catch (IOException)
{ {
return; return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment