frp/g/g.go

33 lines
527 B
Go
Raw Normal View History

2024-10-05 10:25:11 +08:00
package g
import (
config "github.com/fatedier/frp/pkg/config/legacy"
)
var (
GlbClientCfg *ClientCfg
GlbServerCfg *ServerCfg
)
func init() {
GlbClientCfg = &ClientCfg{
ClientCommonConf: config.GetDefaultClientConf(),
}
GlbServerCfg = &ServerCfg{
ServerCommonConf: config.GetDefaultServerConf(),
}
}
type ClientCfg struct {
config.ClientCommonConf
CfgFile string
ServerUdpPort int // this is configured by login response from frps
}
type ServerCfg struct {
config.ServerCommonConf
CfgFile string
}