-
-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2869 from fatedier/dev
bump version to v0.41.0
- Loading branch information
Showing
21 changed files
with
113 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,8 @@ | ||
### New | ||
|
||
* Added `dial_server_timeout` in frpc to specify connect timeout to frps. | ||
* Additional EndpointParams can be set for OIDC. | ||
* Added CloseProxy operation in server plugin. | ||
* Support go http pprof. | ||
|
||
### Improve | ||
|
||
* Added some randomness in reconnect delay. | ||
|
||
### Fix | ||
|
||
* TLS server name is ignored when `tls_trusted_ca_file` isn’t set. | ||
* Change underlying TCP connection keepalive interval to 2 hours. | ||
* Create new connection to server for `sudp` visitor when needed, to avoid frequent reconnections. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,10 @@ server_port = 7000 | |
# The maximum amount of time a dial to server will wait for a connect to complete. Default value is 10 seconds. | ||
# dial_server_timeout = 10 | ||
|
||
# dial_server_keepalive specifies the interval between keep-alive probes for an active network connection between frpc and frps. | ||
# If negative, keep-alive probes are disabled. | ||
# dial_server_keepalive = 7200 | ||
|
||
# if you want to connect frps by http proxy or socks5 proxy or ntlm proxy, you can set http_proxy here or in global environment variables | ||
# it only works when protocol is tcp | ||
# http_proxy = http://user:[email protected]:8080 | ||
|
@@ -69,7 +73,8 @@ admin_pwd = admin | |
pool_count = 5 | ||
|
||
# if tcp stream multiplexing is used, default is true, it must be same with frps | ||
tcp_mux = true | ||
# tcp_mux = true | ||
|
||
# specify keep alive interval for tcp mux. | ||
# only valid if tcp_mux is true. | ||
# tcp_mux_keepalive_interval = 60 | ||
|
@@ -126,6 +131,10 @@ udp_packet_size = 1500 | |
# If DisableCustomTLSFirstByte is true, frpc will not send that custom byte. | ||
disable_custom_tls_first_byte = false | ||
|
||
# Enable golang pprof handlers in admin listener. | ||
# Admin port must be set first. | ||
pprof_enable = false | ||
|
||
# 'ssh' is the unique proxy name | ||
# if user in [common] section is not empty, it will be changed to {user}.{proxy} such as 'your_name.ssh' | ||
[ssh] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -262,6 +262,7 @@ func Test_LoadClientCommonConf(t *testing.T) { | |
ServerAddr: "0.0.0.9", | ||
ServerPort: 7009, | ||
DialServerTimeout: 10, | ||
DialServerKeepAlive: 7200, | ||
HTTPProxy: "http://user:[email protected]:8080", | ||
LogFile: "./frpc.log9", | ||
LogWay: "file", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.