mirror of https://github.com/v2ray/v2ray-core
Check if inbound and outbound config are set.
parent
103c721626
commit
e5394cdaa0
|
@ -40,7 +40,15 @@ func (this *Config) UnmarshalJSON(data []byte) error {
|
|||
this.Port = jsonConfig.Port
|
||||
this.LogConfig = jsonConfig.LogConfig
|
||||
this.RouterConfig = jsonConfig.RouterConfig
|
||||
|
||||
if jsonConfig.InboundConfig == nil {
|
||||
return errors.New("Point: Inbound config is not specified.")
|
||||
}
|
||||
this.InboundConfig = jsonConfig.InboundConfig
|
||||
|
||||
if jsonConfig.OutboundConfig == nil {
|
||||
return errors.New("Point: Outbound config is not specified.")
|
||||
}
|
||||
this.OutboundConfig = jsonConfig.OutboundConfig
|
||||
this.InboundDetours = jsonConfig.InboundDetours
|
||||
this.OutboundDetours = jsonConfig.OutboundDetours
|
||||
|
|
Loading…
Reference in New Issue