fix json marshalling of uninitialised JSONIPnet
This commit is contained in:
parent
ddb0b4c549
commit
047a0dc7be
12
exttypes.go
12
exttypes.go
@ -12,7 +12,11 @@ type JSONIPNet struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (n JSONIPNet) MarshalJSON() ([]byte, error) {
|
func (n JSONIPNet) MarshalJSON() ([]byte, error) {
|
||||||
return []byte("\"" + n.IPNet.String() + "\""), nil
|
if len(n.IPNet.IP) == 0 {
|
||||||
|
return []byte("\"\""), nil
|
||||||
|
} else {
|
||||||
|
return []byte("\"" + n.IPNet.String() + "\""), nil
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (n *JSONIPNet) UnmarshalJSON(b []byte) error {
|
func (n *JSONIPNet) UnmarshalJSON(b []byte) error {
|
||||||
@ -36,11 +40,7 @@ func (n *JSONIPNet) UnmarshalJSON(b []byte) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (n *JSONIPNet) String() string {
|
func (n *JSONIPNet) String() string {
|
||||||
if len(n.IPNet.IP) == 0 {
|
return n.IPNet.String()
|
||||||
return "\"\""
|
|
||||||
} else {
|
|
||||||
return n.IPNet.String()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type JSONKey struct {
|
type JSONKey struct {
|
||||||
|
Loading…
Reference in New Issue
Block a user