-
-
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 #2834 from fatedier/dev
bump version
- Loading branch information
Showing
21 changed files
with
233 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
### 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. | ||
|
||
### Improve | ||
|
||
* Added some randomness in reconnect delay. | ||
|
||
### Fix | ||
|
||
* Fixed IPv6 address parse issue. | ||
* TLS server name is ignored when `tls_trusted_ca_file` isn’t set. |
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 |
---|---|---|
|
@@ -6,6 +6,9 @@ | |
server_addr = 0.0.0.0 | ||
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 | ||
|
||
# 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 | ||
|
@@ -48,6 +51,12 @@ oidc_audience = | |
# It will be used to get an OIDC token if AuthenticationMethod == "oidc". By default, this value is "". | ||
oidc_token_endpoint_url = | ||
|
||
# oidc_additional_xxx specifies additional parameters to be sent to the OIDC Token Endpoint. | ||
# For example, if you want to specify the "audience" parameter, you can set as follow. | ||
# frp will add "audience=<value>" "var1=<value>" to the additional parameters. | ||
# oidc_additional_audience = https://dev.auth.com/api/v2/ | ||
# oidc_additional_var1 = foobar | ||
|
||
# set admin address for control frpc's action by http api such as reload | ||
admin_addr = 127.0.0.1 | ||
admin_port = 7400 | ||
|
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 |
---|---|---|
|
@@ -261,6 +261,7 @@ func Test_LoadClientCommonConf(t *testing.T) { | |
}, | ||
ServerAddr: "0.0.0.9", | ||
ServerPort: 7009, | ||
DialServerTimeout: 10, | ||
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
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.