mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 17:27:23 -05:00
36 lines
797 B
Go
36 lines
797 B
Go
package conf
|
|
|
|
import (
|
|
"github.com/golang/protobuf/proto"
|
|
"v2ray.com/core/proxy/http"
|
|
)
|
|
|
|
type HttpAccount struct {
|
|
Username string `json:"user"`
|
|
Password string `json:"pass"`
|
|
}
|
|
|
|
type HttpServerConfig struct {
|
|
Timeout uint32 `json:"timeout"`
|
|
Accounts []*HttpAccount `json:"accounts"`
|
|
Transparent bool `json:"allowTransparent"`
|
|
UserLevel uint32 `json:"userLevel"`
|
|
}
|
|
|
|
func (c *HttpServerConfig) Build() (proto.Message, error) {
|
|
config := &http.ServerConfig{
|
|
Timeout: c.Timeout,
|
|
AllowTransparent: c.Transparent,
|
|
UserLevel: c.UserLevel,
|
|
}
|
|
|
|
if len(c.Accounts) > 0 {
|
|
config.Accounts = make(map[string]string)
|
|
for _, account := range c.Accounts {
|
|
config.Accounts[account.Username] = account.Password
|
|
}
|
|
}
|
|
|
|
return config, nil
|
|
}
|