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
37d1d6a2
Commit
37d1d6a2
authored
Sep 24, 2020
by
Honfika
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
disable prefetch
parent
26a8ca93
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
App.config
...les/Titanium.Web.Proxy.Examples.WindowsService/App.config
+1
-1
Settings.Designer.cs
...y.Examples.WindowsService/Properties/Settings.Designer.cs
+1
-1
Settings.settings
...roxy.Examples.WindowsService/Properties/Settings.settings
+1
-1
ProxyServer.cs
src/Titanium.Web.Proxy/ProxyServer.cs
+2
-2
No files found.
examples/Titanium.Web.Proxy.Examples.WindowsService/App.config
View file @
37d1d6a2
...
...
@@ -45,7 +45,7 @@
<
value
>
True
</
value
>
</
setting
>
<
setting
name
=
"EnableTcpServerConnectionPrefetch"
serializeAs
=
"String"
>
<
value
>
Tru
e
</
value
>
<
value
>
Fals
e
</
value
>
</
setting
>
<
setting
name
=
"EnableWinAuth"
serializeAs
=
"String"
>
<
value
>
False
</
value
>
...
...
examples/Titanium.Web.Proxy.Examples.WindowsService/Properties/Settings.Designer.cs
View file @
37d1d6a2
...
...
@@ -95,7 +95,7 @@ namespace WindowsServiceExample.Properties
[
global
::
System
.
Configuration
.
ApplicationScopedSettingAttribute
()]
[
global
::
System
.
Diagnostics
.
DebuggerNonUserCodeAttribute
()]
[
global
::
System
.
Configuration
.
DefaultSettingValueAttribute
(
"
Tru
e"
)]
[
global
::
System
.
Configuration
.
DefaultSettingValueAttribute
(
"
Fals
e"
)]
public
bool
EnableTcpServerConnectionPrefetch
{
get
...
...
examples/Titanium.Web.Proxy.Examples.WindowsService/Properties/Settings.settings
View file @
37d1d6a2
...
...
@@ -21,7 +21,7 @@
<Value
Profile=
"(Default)"
>
True
</Value>
</Setting>
<Setting
Name=
"EnableTcpServerConnectionPrefetch"
Type=
"System.Boolean"
Scope=
"Application"
>
<Value
Profile=
"(Default)"
>
Tru
e
</Value>
<Value
Profile=
"(Default)"
>
Fals
e
</Value>
</Setting>
<Setting
Name=
"EnableWinAuth"
Type=
"System.Boolean"
Scope=
"Application"
>
<Value
Profile=
"(Default)"
>
False
</Value>
...
...
src/Titanium.Web.Proxy/ProxyServer.cs
View file @
37d1d6a2
...
...
@@ -182,9 +182,9 @@ namespace Titanium.Web.Proxy
/// corresponding server connection process using CONNECT hostname or SNI hostname on a separate task so that after parsing client request
/// we will have the server connection immediately ready or in the process of getting ready.
/// If a server connection is available in cache then this prefetch task will immediately return with the available connection from cache.
/// Defaults to
tru
e.
/// Defaults to
fals
e.
/// </summary>
public
bool
EnableTcpServerConnectionPrefetch
{
get
;
set
;
}
=
tru
e
;
public
bool
EnableTcpServerConnectionPrefetch
{
get
;
set
;
}
=
fals
e
;
/// <summary>
/// Gets or sets a Boolean value that specifies whether server and client stream Sockets are using the Nagle algorithm.
...
...
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