mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-02-21 17:03:12 +03:00
Config: Correctly marshal PortList and NameServerConfig to JSON (#4386)
This commit is contained in:
parent
a71762b5da
commit
94c7970fd6
@ -203,6 +203,24 @@ func (list *PortList) Build() *net.PortList {
|
|||||||
return portList
|
return portList
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (v PortList) MarshalJSON() ([]byte, error) {
|
||||||
|
return json.Marshal(v.String())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (v PortList) String() string {
|
||||||
|
ports := []string{}
|
||||||
|
for _, port := range v.Range {
|
||||||
|
if port.From == port.To {
|
||||||
|
p := strconv.Itoa(int(port.From))
|
||||||
|
ports = append(ports, p)
|
||||||
|
} else {
|
||||||
|
p := fmt.Sprintf("%d-%d", port.From, port.To)
|
||||||
|
ports = append(ports, p)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return strings.Join(ports, ",")
|
||||||
|
}
|
||||||
|
|
||||||
// UnmarshalJSON implements encoding/json.Unmarshaler.UnmarshalJSON
|
// UnmarshalJSON implements encoding/json.Unmarshaler.UnmarshalJSON
|
||||||
func (list *PortList) UnmarshalJSON(data []byte) error {
|
func (list *PortList) UnmarshalJSON(data []byte) error {
|
||||||
var listStr string
|
var listStr string
|
||||||
|
@ -12,13 +12,13 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type NameServerConfig struct {
|
type NameServerConfig struct {
|
||||||
Address *Address
|
Address *Address `json:"address"`
|
||||||
ClientIP *Address
|
ClientIP *Address `json:"clientIp"`
|
||||||
Port uint16
|
Port uint16 `json:"port"`
|
||||||
SkipFallback bool
|
SkipFallback bool `json:"skipFallback"`
|
||||||
Domains []string
|
Domains []string `json:"domains"`
|
||||||
ExpectIPs StringList
|
ExpectIPs StringList `json:"expectIps"`
|
||||||
QueryStrategy string
|
QueryStrategy string `json:"queryStrategy"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *NameServerConfig) UnmarshalJSON(data []byte) error {
|
func (c *NameServerConfig) UnmarshalJSON(data []byte) error {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user