mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 01:07:28 -04:00
34 lines
982 B
Go
34 lines
982 B
Go
package simplified
|
|
|
|
import (
|
|
"context"
|
|
"github.com/v2fly/v2ray-core/v4/common"
|
|
"github.com/v2fly/v2ray-core/v4/common/protocol"
|
|
"github.com/v2fly/v2ray-core/v4/proxy/socks"
|
|
)
|
|
|
|
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)
|
|
}))
|
|
|
|
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)
|
|
}))
|
|
}
|