mirror of https://github.com/status-im/consul.git
34 lines
1006 B
Go
34 lines
1006 B
Go
// Code generated by protoc-json-shim. DO NOT EDIT.
|
|
package pbproxystate
|
|
|
|
import (
|
|
protojson "google.golang.org/protobuf/encoding/protojson"
|
|
)
|
|
|
|
// MarshalJSON is a custom marshaler for HostPortAddress
|
|
func (this *HostPortAddress) MarshalJSON() ([]byte, error) {
|
|
str, err := AddressMarshaler.Marshal(this)
|
|
return []byte(str), err
|
|
}
|
|
|
|
// UnmarshalJSON is a custom unmarshaler for HostPortAddress
|
|
func (this *HostPortAddress) UnmarshalJSON(b []byte) error {
|
|
return AddressUnmarshaler.Unmarshal(b, this)
|
|
}
|
|
|
|
// MarshalJSON is a custom marshaler for UnixSocketAddress
|
|
func (this *UnixSocketAddress) MarshalJSON() ([]byte, error) {
|
|
str, err := AddressMarshaler.Marshal(this)
|
|
return []byte(str), err
|
|
}
|
|
|
|
// UnmarshalJSON is a custom unmarshaler for UnixSocketAddress
|
|
func (this *UnixSocketAddress) UnmarshalJSON(b []byte) error {
|
|
return AddressUnmarshaler.Unmarshal(b, this)
|
|
}
|
|
|
|
var (
|
|
AddressMarshaler = &protojson.MarshalOptions{}
|
|
AddressUnmarshaler = &protojson.UnmarshalOptions{DiscardUnknown: false}
|
|
)
|