Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
Titanium-Web-Proxy
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Titanium-Web-Proxy
Commits
7e2c1b2d
Commit
7e2c1b2d
authored
Sep 01, 2015
by
titanium007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix readme
parent
caf4e612
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
20 deletions
+15
-20
README.md
README.md
+0
-5
RequestHandler.cs
Titanium.Web.Proxy/RequestHandler.cs
+15
-15
No files found.
README.md
View file @
7e2c1b2d
...
@@ -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
=====
=====
...
...
Titanium.Web.Proxy/RequestHandler.cs
View file @
7e2c1b2d
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment