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
6fa32c76
Unverified
Commit
6fa32c76
authored
Mar 04, 2019
by
Jehonathan Thomas
Committed by
GitHub
Mar 04, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #562 from justcoding121/master
Beta 3.0.901+
parents
b0dd4b1f
8d26b5d2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
95 additions
and
42 deletions
+95
-42
Titanium.Web.Proxy.ProxyServer.html
docs/api/Titanium.Web.Proxy.ProxyServer.html
+73
-41
index.json
docs/index.json
+1
-1
xrefmap.yml
docs/xrefmap.yml
+13
-0
TcpConnectionFactory.cs
src/Titanium.Web.Proxy/Network/Tcp/TcpConnectionFactory.cs
+1
-0
ProxyServer.cs
src/Titanium.Web.Proxy/ProxyServer.cs
+7
-0
No files found.
docs/api/Titanium.Web.Proxy.ProxyServer.html
View file @
6fa32c76
This diff is collapsed.
Click to expand it.
docs/index.json
View file @
6fa32c76
This diff is collapsed.
Click to expand it.
docs/xrefmap.yml
View file @
6fa32c76
...
...
@@ -3570,6 +3570,19 @@ references:
isSpec
:
"
True"
fullName
:
Titanium.Web.Proxy.ProxyServer.MaxCachedConnections
nameWithType
:
ProxyServer.MaxCachedConnections
-
uid
:
Titanium.Web.Proxy.ProxyServer.NoDelay
name
:
NoDelay
href
:
api/Titanium.Web.Proxy.ProxyServer.html#Titanium_Web_Proxy_ProxyServer_NoDelay
commentId
:
P:Titanium.Web.Proxy.ProxyServer.NoDelay
fullName
:
Titanium.Web.Proxy.ProxyServer.NoDelay
nameWithType
:
ProxyServer.NoDelay
-
uid
:
Titanium.Web.Proxy.ProxyServer.NoDelay*
name
:
NoDelay
href
:
api/Titanium.Web.Proxy.ProxyServer.html#Titanium_Web_Proxy_ProxyServer_NoDelay_
commentId
:
Overload:Titanium.Web.Proxy.ProxyServer.NoDelay
isSpec
:
"
True"
fullName
:
Titanium.Web.Proxy.ProxyServer.NoDelay
nameWithType
:
ProxyServer.NoDelay
-
uid
:
Titanium.Web.Proxy.ProxyServer.OnClientConnectionCreate
name
:
OnClientConnectionCreate
href
:
api/Titanium.Web.Proxy.ProxyServer.html#Titanium_Web_Proxy_ProxyServer_OnClientConnectionCreate
...
...
src/Titanium.Web.Proxy/Network/Tcp/TcpConnectionFactory.cs
View file @
6fa32c76
...
...
@@ -271,6 +271,7 @@ namespace Titanium.Web.Proxy.Network.Tcp
{
tcpClient
=
new
TcpClient
(
upStreamEndPoint
)
{
NoDelay
=
proxyServer
.
NoDelay
,
ReceiveTimeout
=
proxyServer
.
ConnectionTimeOutSeconds
*
1000
,
SendTimeout
=
proxyServer
.
ConnectionTimeOutSeconds
*
1000
,
SendBufferSize
=
proxyServer
.
BufferSize
,
...
...
src/Titanium.Web.Proxy/ProxyServer.cs
View file @
6fa32c76
...
...
@@ -173,6 +173,12 @@ namespace Titanium.Web.Proxy
/// </summary>
public
bool
EnableTcpServerConnectionPrefetch
{
get
;
set
;
}
=
true
;
/// <summary>
/// Gets or sets a Boolean value that specifies whether server and client stream Sockets are using the Nagle algorithm.
/// Defaults to true, no nagle algorithm is used.
/// </summary>
public
bool
NoDelay
{
get
;
set
;
}
=
true
;
/// <summary>
/// Buffer size in bytes used throughout this proxy.
/// Default value is 8192 bytes.
...
...
@@ -696,6 +702,7 @@ namespace Titanium.Web.Proxy
{
// based on end point type call appropriate request handlers
tcpClient
=
endPoint
.
Listener
.
EndAcceptTcpClient
(
asyn
);
tcpClient
.
NoDelay
=
NoDelay
;
}
catch
(
ObjectDisposedException
)
{
...
...
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