1 Star 0 Fork 171

林品涌/golang内网穿透

forked from 王敏/golang内网穿透 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
outer.go 550 Bytes
一键复制 编辑 原始数据 按行查看 历史
wangmin 提交于 2018-10-17 21:59 . bin 目录配置增加
package main
import (
"ConfigAdapter/JsonConfig"
"transponder/outer"
)
type OutConfig struct {
InnerServerAddress string
OuterServerAddress string
AuthKey string
}
func main() {
c := &OutConfig{}
JsonConfig.Load("outer.config.json", c)
//启动内部服务
innerServer := outer.NewInnerServer()
innerServer.AuthKey = c.AuthKey
innerServer.Address = c.InnerServerAddress
go innerServer.StartServer()
//启动外部服务
server := outer.NewServer(innerServer)
server.Address = c.OuterServerAddress
server.StartServer()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/Lpy_hello/transponder.git
git@gitee.com:Lpy_hello/transponder.git
Lpy_hello
transponder
golang内网穿透
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385