2021-09-06 00:59:40 -04:00
|
|
|
package simplified
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2022-01-02 10:16:23 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v5/common"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common/protocol"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common/serial"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/proxy/shadowsocks"
|
2021-09-06 00:59:40 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
common.Must(common.RegisterConfig((*ServerConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
|
|
simplifiedServer := config.(*ServerConfig)
|
|
|
|
fullServer := &shadowsocks.ServerConfig{
|
|
|
|
User: &protocol.User{
|
|
|
|
Account: serial.ToTypedMessage(&shadowsocks.Account{
|
|
|
|
Password: simplifiedServer.Password,
|
2022-08-19 08:41:18 -04:00
|
|
|
CipherType: simplifiedServer.Method,
|
2021-09-06 00:59:40 -04:00
|
|
|
}),
|
|
|
|
},
|
2022-08-19 10:28:20 -04:00
|
|
|
Network: simplifiedServer.Networks.Network,
|
2021-12-30 17:55:45 -05:00
|
|
|
PacketEncoding: simplifiedServer.PacketEncoding,
|
2021-09-06 00:59:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return common.CreateObject(ctx, fullServer)
|
|
|
|
}))
|
|
|
|
|
|
|
|
common.Must(common.RegisterConfig((*ClientConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
|
|
simplifiedClient := config.(*ClientConfig)
|
|
|
|
fullClient := &shadowsocks.ClientConfig{
|
|
|
|
Server: []*protocol.ServerEndpoint{
|
|
|
|
{
|
|
|
|
Address: simplifiedClient.Address,
|
|
|
|
Port: simplifiedClient.Port,
|
|
|
|
User: []*protocol.User{
|
|
|
|
{
|
|
|
|
Account: serial.ToTypedMessage(&shadowsocks.Account{
|
2022-01-14 07:18:25 -05:00
|
|
|
Password: simplifiedClient.Password,
|
2022-08-19 08:41:18 -04:00
|
|
|
CipherType: simplifiedClient.Method,
|
2022-01-14 07:18:25 -05:00
|
|
|
ExperimentReducedIvHeadEntropy: simplifiedClient.ExperimentReducedIvHeadEntropy,
|
2021-09-06 00:59:40 -04:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return common.CreateObject(ctx, fullClient)
|
|
|
|
}))
|
|
|
|
}
|