1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-21 04:34:15 -04:00
v2fly/common/net/address_json.go

21 lines
305 B
Go
Raw Normal View History

2016-01-15 07:17:04 -05: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-18 19:21:07 -05:00
this.Address = ParseAddress(rawStr)
2016-01-15 07:17:04 -05:00
return nil
}