mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
46 lines
1.3 KiB
Go
46 lines
1.3 KiB
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/common/serial"
|
||
|
"github.com/v2fly/v2ray-core/v4/proxy/trojan"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
common.Must(common.RegisterConfig((*ServerConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
||
|
simplifiedServer := config.(*ServerConfig)
|
||
|
fullServer := &trojan.ServerConfig{
|
||
|
Users: func() (users []*protocol.User) {
|
||
|
for _, v := range simplifiedServer.Users {
|
||
|
account := &trojan.Account{Password: v}
|
||
|
users = append(users, &protocol.User{
|
||
|
Account: serial.ToTypedMessage(account),
|
||
|
})
|
||
|
}
|
||
|
return
|
||
|
}(),
|
||
|
}
|
||
|
return trojan.NewServer(ctx, fullServer)
|
||
|
}))
|
||
|
|
||
|
common.Must(common.RegisterConfig((*ClientConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
||
|
simplifiedClient := config.(*ClientConfig)
|
||
|
fullClient := &trojan.ClientConfig{Server: []*protocol.ServerEndpoint{
|
||
|
{
|
||
|
Address: simplifiedClient.Address,
|
||
|
Port: simplifiedClient.Port,
|
||
|
User: []*protocol.User{
|
||
|
{
|
||
|
Account: serial.ToTypedMessage(&trojan.Account{Password: simplifiedClient.Password}),
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
return trojan.NewClient(ctx, fullClient)
|
||
|
}))
|
||
|
}
|