This repository was archived by the owner on Jul 9, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
src/Titanium.Web.Proxy/Network/Tcp Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ Task Document -depends Build {
120
120
git config -- global credential.helper store
121
121
Add-Content " $HOME \.git-credentials" " https://$ ( $env: github_access_token ) :x-oauth-basic@github.com`n "
122
122
git config -- global user.email $env: github_email
123
- git config -- global user.name " buildbot121 "
123
+ git config -- global user.name " buildbot171 "
124
124
git add . - A
125
125
git commit - m " API documentation update by build server"
126
126
git push origin master
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ test_script:
45
45
skip_tags : true
46
46
47
47
skip_commits :
48
- author : buildbot121
48
+ author : buildbot171
49
49
files :
50
50
- docs/*
51
51
- .vscode/*
@@ -64,9 +64,9 @@ artifacts:
64
64
65
65
environment :
66
66
github_access_token :
67
- secure : BGdKiI7FwHGkFt+/OmgZDkE1hzLqLrTxcc9c+joVqGyO4LvesHb1sR6hzisVwVPm
67
+ secure : mZLeq0GTB9kb5b6+HnVpJB6hhiYMJIQ2+Zf/DwZ/LEIyxJaYB1nx36aGHXE9q1cN
68
68
github_email :
69
- secure : wvYod3JLufbIBkavRXlCP724wJkhqR2RRuLLaPnqfps =
69
+ secure : iBJZGqxyiHVNeYI0uIW+MdGd3I3pg8brJtETNRkKe/A =
70
70
nuget_access_token :
71
71
secure : ZbRmjOcp+TDllRV1wxqLZjdRV7hld388rXlWVJuGGiQleomP9Ku+Nsy3a75E7/9k
72
72
deploy :
Original file line number Diff line number Diff line change @@ -385,6 +385,11 @@ private async Task<TcpServerConnection> createServerConnection(string remoteHost
385
385
tcpServerSocket = new Socket ( addressFamily , SocketType . Stream , ProtocolType . Tcp ) ;
386
386
}
387
387
388
+ if ( upStreamEndPoint != null )
389
+ {
390
+ tcpServerSocket . Bind ( upStreamEndPoint ) ;
391
+ }
392
+
388
393
tcpServerSocket . NoDelay = proxyServer . NoDelay ;
389
394
tcpServerSocket . ReceiveTimeout = proxyServer . ConnectionTimeOutSeconds * 1000 ;
390
395
tcpServerSocket . SendTimeout = proxyServer . ConnectionTimeOutSeconds * 1000 ;
You can’t perform that action at this time.
0 commit comments