mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-10 06:16:53 -05:00
32 lines
876 B
Go
32 lines
876 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/http"
|
|
)
|
|
|
|
func init() {
|
|
common.Must(common.RegisterConfig((*ServerConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
simplifiedServer := config.(*ServerConfig)
|
|
_ = simplifiedServer
|
|
fullServer := &http.ServerConfig{}
|
|
return common.CreateObject(ctx, fullServer)
|
|
}))
|
|
|
|
common.Must(common.RegisterConfig((*ClientConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
simplifiedClient := config.(*ClientConfig)
|
|
fullClient := &http.ClientConfig{
|
|
Server: []*protocol.ServerEndpoint{
|
|
{
|
|
Address: simplifiedClient.Address,
|
|
Port: simplifiedClient.Port,
|
|
},
|
|
},
|
|
}
|
|
return common.CreateObject(ctx, fullClient)
|
|
}))
|
|
}
|