| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // +build json
- package socks
- import (
- "encoding/json"
- "errors"
- "v2ray.com/core/common"
- "v2ray.com/core/common/log"
- v2net "v2ray.com/core/common/net"
- "v2ray.com/core/proxy/registry"
- )
- const (
- AuthMethodNoAuth = "noauth"
- AuthMethodUserPass = "password"
- )
- func (this *ServerConfig) UnmarshalJSON(data []byte) error {
- type SocksConfig struct {
- AuthMethod string `json:"auth"`
- Accounts []*Account `json:"accounts"`
- UDP bool `json:"udp"`
- Host *v2net.AddressPB `json:"ip"`
- Timeout uint32 `json:"timeout"`
- }
- rawConfig := new(SocksConfig)
- if err := json.Unmarshal(data, rawConfig); err != nil {
- return errors.New("Socks: Failed to parse config: " + err.Error())
- }
- if rawConfig.AuthMethod == AuthMethodNoAuth {
- this.AuthType = ServerConfig_NO_AUTH
- } else if rawConfig.AuthMethod == AuthMethodUserPass {
- this.AuthType = ServerConfig_PASSWORD
- } else {
- log.Error("Socks: Unknown auth method: ", rawConfig.AuthMethod)
- return common.ErrBadConfiguration
- }
- if len(rawConfig.Accounts) > 0 {
- this.Accounts = make(map[string]string, len(rawConfig.Accounts))
- for _, account := range rawConfig.Accounts {
- this.Accounts[account.Username] = account.Password
- }
- }
- this.UdpEnabled = rawConfig.UDP
- if rawConfig.Host != nil {
- this.Address = rawConfig.Host
- }
- if rawConfig.Timeout >= 0 {
- this.Timeout = rawConfig.Timeout
- }
- return nil
- }
- func init() {
- registry.RegisterInboundConfig("socks", func() interface{} { return new(ServerConfig) })
- }
|