| 1234567891011121314151617181920212223242526 |
- package json
- import (
- "encoding/json"
- "github.com/v2ray/v2ray-core/app/point/config"
- proxyconfig "github.com/v2ray/v2ray-core/proxy/common/config"
- )
- type InboundDetourConfig struct {
- ProtocolValue string `json:"protocol"`
- PortRangeValue *PortRange `json:"port"`
- SettingsValue json.RawMessage `json:"settings"`
- }
- func (this *InboundDetourConfig) Protocol() string {
- return this.ProtocolValue
- }
- func (this *InboundDetourConfig) PortRange() config.PortRange {
- return this.PortRangeValue
- }
- func (this *InboundDetourConfig) Settings() interface{} {
- return loadConnectionConfig(this.SettingsValue, this.ProtocolValue, proxyconfig.TypeInbound)
- }
|