no message

This commit is contained in:
arraykeys
2018-06-16 17:41:09 +08:00
parent e849cbfcd8
commit 006f2f9510
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,8 @@
proxy更新日志 proxy更新日志
v5.0
1.修复了SPS多端口无效的bug.
2.增加了DNS代理功能提供安全无污染的DNS解析.
v4.9 v4.9
1.修复了HTTP Basic代理返回不合适的头部,导致浏览器不会弹框,个别代理插件无法认证的问题. 1.修复了HTTP Basic代理返回不合适的头部,导致浏览器不会弹框,个别代理插件无法认证的问题.
2.内网穿透切换smux到yamux. 2.内网穿透切换smux到yamux.

View File

@ -155,7 +155,7 @@ func (s *SPS) Start(args interface{}, log *logger.Logger) (err error) {
s.log.Printf("use %s %s parent %s", *s.cfg.ParentType, *s.cfg.ParentServiceType, *s.cfg.Parent) s.log.Printf("use %s %s parent %s", *s.cfg.ParentType, *s.cfg.ParentServiceType, *s.cfg.Parent)
for _, addr := range strings.Split(*s.cfg.Local, ",") { for _, addr := range strings.Split(*s.cfg.Local, ",") {
if addr != "" { if addr != "" {
host, port, _ := net.SplitHostPort(*s.cfg.Local) host, port, _ := net.SplitHostPort(addr)
p, _ := strconv.Atoi(port) p, _ := strconv.Atoi(port)
sc := utils.NewServerChannel(host, p, s.log) sc := utils.NewServerChannel(host, p, s.log)
if *s.cfg.LocalType == "tcp" { if *s.cfg.LocalType == "tcp" {