mirror of
https://github.com/fatedier/frp.git
synced 2025-12-12 19:18:34 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fdef7448a7 | ||
|
|
0ff27fc9ac | ||
|
|
9f8db314d6 |
12
Release.md
12
Release.md
@@ -1,12 +0,0 @@
|
||||
### New
|
||||
|
||||
* New plugin `https2https`.
|
||||
* frpc supports `tls_server_name` to override the default value from `server_addr`.
|
||||
|
||||
### Improvement
|
||||
|
||||
* Increase reconnect frequency if it occurs an network error between frpc and frps.
|
||||
|
||||
### Fix
|
||||
|
||||
* Fix panic issue about xtcp.
|
||||
|
||||
@@ -19,7 +19,7 @@ import (
|
||||
"strings"
|
||||
)
|
||||
|
||||
var version string = "0.36.0"
|
||||
var version string = "0.36.1"
|
||||
|
||||
func Full() string {
|
||||
return version
|
||||
|
||||
@@ -265,7 +265,7 @@ func NewService(cfg config.ServerCommonConf) (svr *Service, err error) {
|
||||
// Create nat hole controller.
|
||||
if cfg.BindUDPPort > 0 {
|
||||
var nc *nathole.Controller
|
||||
address := net.JoinHostPort(cfg.BindAddr, strconv.Itoa(cfg.BindPort))
|
||||
address := net.JoinHostPort(cfg.BindAddr, strconv.Itoa(cfg.BindUDPPort))
|
||||
nc, err = nathole.NewController(address)
|
||||
if err != nil {
|
||||
err = fmt.Errorf("Create nat hole controller error, %v", err)
|
||||
|
||||
Reference in New Issue
Block a user