1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-02 12:05:23 +00:00
v2fly/common/net/address_json.go

21 lines
305 B
Go
Raw Normal View History

2016-01-15 12:17:04 +00:00
// +build json
package net
import (
"encoding/json"
)
type AddressJson struct {
Address Address
}
func (this *AddressJson) UnmarshalJSON(data []byte) error {
var rawStr string
if err := json.Unmarshal(data, &rawStr); err != nil {
return err
}
2016-01-19 00:21:07 +00:00
this.Address = ParseAddress(rawStr)
2016-01-15 12:17:04 +00:00
return nil
}