1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-04 19:14:33 -04:00
v2fly/proxy/socks/simplified/config.go

35 lines
983 B
Go
Raw Normal View History

2021-09-04 16:16:01 -04:00
package simplified
import (
"context"
2021-10-28 06:34:19 -04:00
"github.com/v2fly/v2ray-core/v5/common"
"github.com/v2fly/v2ray-core/v5/common/protocol"
"github.com/v2fly/v2ray-core/v5/proxy/socks"
2021-09-04 16:16:01 -04:00
)
func init() {
common.Must(common.RegisterConfig((*ServerConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
simplifiedServer := config.(*ServerConfig)
fullServer := &socks.ServerConfig{
AuthType: socks.AuthType_NO_AUTH,
Address: simplifiedServer.Address,
UdpEnabled: simplifiedServer.UdpEnabled,
}
return common.CreateObject(ctx, fullServer)
2021-09-04 16:16:01 -04:00
}))
common.Must(common.RegisterConfig((*ClientConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
simplifiedClient := config.(*ClientConfig)
fullClient := &socks.ClientConfig{
Server: []*protocol.ServerEndpoint{
{
Address: simplifiedClient.Address,
Port: simplifiedClient.Port,
},
},
}
return common.CreateObject(ctx, fullClient)
2021-09-04 16:16:01 -04:00
}))
}