2491 lines
65 KiB
Go
2491 lines
65 KiB
Go
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
|
// source: envoy/api/v2/discovery.proto
|
|
|
|
package v2
|
|
|
|
import proto "github.com/gogo/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
import core "github.com/envoyproxy/go-control-plane/envoy/api/v2/core"
|
|
import rpc "github.com/gogo/googleapis/google/rpc"
|
|
import _ "github.com/gogo/protobuf/gogoproto"
|
|
import types "github.com/gogo/protobuf/types"
|
|
|
|
import bytes "bytes"
|
|
|
|
import io "io"
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
// A DiscoveryRequest requests a set of versioned resources of the same type for
|
|
// a given Envoy node on some API.
|
|
type DiscoveryRequest struct {
|
|
// The version_info provided in the request messages will be the version_info
|
|
// received with the most recent successfully processed response or empty on
|
|
// the first request. It is expected that no new request is sent after a
|
|
// response is received until the Envoy instance is ready to ACK/NACK the new
|
|
// configuration. ACK/NACK takes place by returning the new API config version
|
|
// as applied or the previous API config version respectively. Each type_url
|
|
// (see below) has an independent version associated with it.
|
|
VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
|
|
// The node making the request.
|
|
Node *core.Node `protobuf:"bytes,2,opt,name=node" json:"node,omitempty"`
|
|
// List of resources to subscribe to, e.g. list of cluster names or a route
|
|
// configuration name. If this is empty, all resources for the API are
|
|
// returned. LDS/CDS expect empty resource_names, since this is global
|
|
// discovery for the Envoy instance. The LDS and CDS responses will then imply
|
|
// a number of resources that need to be fetched via EDS/RDS, which will be
|
|
// explicitly enumerated in resource_names.
|
|
ResourceNames []string `protobuf:"bytes,3,rep,name=resource_names,json=resourceNames" json:"resource_names,omitempty"`
|
|
// Type of the resource that is being requested, e.g.
|
|
// "type.googleapis.com/envoy.api.v2.ClusterLoadAssignment". This is implicit
|
|
// in requests made via singleton xDS APIs such as CDS, LDS, etc. but is
|
|
// required for ADS.
|
|
TypeUrl string `protobuf:"bytes,4,opt,name=type_url,json=typeUrl,proto3" json:"type_url,omitempty"`
|
|
// nonce corresponding to DiscoveryResponse being ACK/NACKed. See above
|
|
// discussion on version_info and the DiscoveryResponse nonce comment. This
|
|
// may be empty if no nonce is available, e.g. at startup or for non-stream
|
|
// xDS implementations.
|
|
ResponseNonce string `protobuf:"bytes,5,opt,name=response_nonce,json=responseNonce,proto3" json:"response_nonce,omitempty"`
|
|
// This is populated when the previous :ref:`DiscoveryResponse <envoy_api_msg_DiscoveryResponse>`
|
|
// failed to update configuration. The *message* field in *error_details* provides the Envoy
|
|
// internal exception related to the failure. It is only intended for consumption during manual
|
|
// debugging, the string provided is not guaranteed to be stable across Envoy versions.
|
|
ErrorDetail *rpc.Status `protobuf:"bytes,6,opt,name=error_detail,json=errorDetail" json:"error_detail,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DiscoveryRequest) Reset() { *m = DiscoveryRequest{} }
|
|
func (m *DiscoveryRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DiscoveryRequest) ProtoMessage() {}
|
|
func (*DiscoveryRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_discovery_51dc66d5d71581c9, []int{0}
|
|
}
|
|
func (m *DiscoveryRequest) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *DiscoveryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_DiscoveryRequest.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalTo(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (dst *DiscoveryRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DiscoveryRequest.Merge(dst, src)
|
|
}
|
|
func (m *DiscoveryRequest) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *DiscoveryRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DiscoveryRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DiscoveryRequest proto.InternalMessageInfo
|
|
|
|
func (m *DiscoveryRequest) GetVersionInfo() string {
|
|
if m != nil {
|
|
return m.VersionInfo
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DiscoveryRequest) GetNode() *core.Node {
|
|
if m != nil {
|
|
return m.Node
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DiscoveryRequest) GetResourceNames() []string {
|
|
if m != nil {
|
|
return m.ResourceNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DiscoveryRequest) GetTypeUrl() string {
|
|
if m != nil {
|
|
return m.TypeUrl
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DiscoveryRequest) GetResponseNonce() string {
|
|
if m != nil {
|
|
return m.ResponseNonce
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DiscoveryRequest) GetErrorDetail() *rpc.Status {
|
|
if m != nil {
|
|
return m.ErrorDetail
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DiscoveryResponse struct {
|
|
// The version of the response data.
|
|
VersionInfo string `protobuf:"bytes,1,opt,name=version_info,json=versionInfo,proto3" json:"version_info,omitempty"`
|
|
// The response resources. These resources are typed and depend on the API being called.
|
|
Resources []types.Any `protobuf:"bytes,2,rep,name=resources" json:"resources"`
|
|
// [#not-implemented-hide:]
|
|
// Canary is used to support two Envoy command line flags:
|
|
//
|
|
// * --terminate-on-canary-transition-failure. When set, Envoy is able to
|
|
// terminate if it detects that configuration is stuck at canary. Consider
|
|
// this example sequence of updates:
|
|
// - Management server applies a canary config successfully.
|
|
// - Management server rolls back to a production config.
|
|
// - Envoy rejects the new production config.
|
|
// Since there is no sensible way to continue receiving configuration
|
|
// updates, Envoy will then terminate and apply production config from a
|
|
// clean slate.
|
|
// * --dry-run-canary. When set, a canary response will never be applied, only
|
|
// validated via a dry run.
|
|
Canary bool `protobuf:"varint,3,opt,name=canary,proto3" json:"canary,omitempty"`
|
|
// Type URL for resources. This must be consistent with the type_url in the
|
|
// Any messages for resources if resources is non-empty. This effectively
|
|
// identifies the xDS API when muxing over ADS.
|
|
TypeUrl string `protobuf:"bytes,4,opt,name=type_url,json=typeUrl,proto3" json:"type_url,omitempty"`
|
|
// For gRPC based subscriptions, the nonce provides a way to explicitly ack a
|
|
// specific DiscoveryResponse in a following DiscoveryRequest. Additional
|
|
// messages may have been sent by Envoy to the management server for the
|
|
// previous version on the stream prior to this DiscoveryResponse, that were
|
|
// unprocessed at response send time. The nonce allows the management server
|
|
// to ignore any further DiscoveryRequests for the previous version until a
|
|
// DiscoveryRequest bearing the nonce. The nonce is optional and is not
|
|
// required for non-stream based xDS implementations.
|
|
Nonce string `protobuf:"bytes,5,opt,name=nonce,proto3" json:"nonce,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DiscoveryResponse) Reset() { *m = DiscoveryResponse{} }
|
|
func (m *DiscoveryResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*DiscoveryResponse) ProtoMessage() {}
|
|
func (*DiscoveryResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_discovery_51dc66d5d71581c9, []int{1}
|
|
}
|
|
func (m *DiscoveryResponse) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *DiscoveryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_DiscoveryResponse.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalTo(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (dst *DiscoveryResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DiscoveryResponse.Merge(dst, src)
|
|
}
|
|
func (m *DiscoveryResponse) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *DiscoveryResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DiscoveryResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DiscoveryResponse proto.InternalMessageInfo
|
|
|
|
func (m *DiscoveryResponse) GetVersionInfo() string {
|
|
if m != nil {
|
|
return m.VersionInfo
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DiscoveryResponse) GetResources() []types.Any {
|
|
if m != nil {
|
|
return m.Resources
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DiscoveryResponse) GetCanary() bool {
|
|
if m != nil {
|
|
return m.Canary
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *DiscoveryResponse) GetTypeUrl() string {
|
|
if m != nil {
|
|
return m.TypeUrl
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DiscoveryResponse) GetNonce() string {
|
|
if m != nil {
|
|
return m.Nonce
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// IncrementalDiscoveryRequest and IncrementalDiscoveryResponse are used in a
|
|
// new gRPC endpoint for Incremental xDS. The feature is not supported for REST
|
|
// management servers.
|
|
//
|
|
// With Incremental xDS, the IncrementalDiscoveryResponses do not need to
|
|
// include a full snapshot of the tracked resources. Instead
|
|
// IncrementalDiscoveryResponses are a diff to the state of a xDS client.
|
|
// In Incremental XDS there are per resource versions which allows to track
|
|
// state at the resource granularity.
|
|
// An xDS Incremental session is always in the context of a gRPC bidirectional
|
|
// stream. This allows the xDS server to keep track of the state of xDS clients
|
|
// connected to it.
|
|
//
|
|
// In Incremental xDS the nonce field is required and used to pair
|
|
// IncrementalDiscoveryResponse to a IncrementalDiscoveryRequest ACK or NACK.
|
|
// Optionaly, a response message level system_version_info is present for
|
|
// debugging purposes only.
|
|
//
|
|
// IncrementalDiscoveryRequest can be sent in 3 situations:
|
|
// 1. Initial message in a xDS bidirectional gRPC stream.
|
|
// 2. As a ACK or NACK response to a previous IncrementalDiscoveryResponse.
|
|
// In this case the response_nonce is set to the nonce value in the Response.
|
|
// ACK or NACK is determined by the absence or presence of error_detail.
|
|
// 3. Spontaneous IncrementalDiscoveryRequest from the client.
|
|
// This can be done to dynamically add or remove elements from the tracked
|
|
// resource_names set. In this case response_nonce must be omitted.
|
|
type IncrementalDiscoveryRequest struct {
|
|
// The node making the request.
|
|
Node *core.Node `protobuf:"bytes,1,opt,name=node" json:"node,omitempty"`
|
|
// Type of the resource that is being requested, e.g.
|
|
// "type.googleapis.com/envoy.api.v2.ClusterLoadAssignment". This is implicit
|
|
// in requests made via singleton xDS APIs such as CDS, LDS, etc. but is
|
|
// required for ADS.
|
|
TypeUrl string `protobuf:"bytes,2,opt,name=type_url,json=typeUrl,proto3" json:"type_url,omitempty"`
|
|
// IncrementalDiscoveryRequests allow the client to add or remove individual
|
|
// resources to the set of tracked resources in the context of a stream.
|
|
// All resource names in the resource_names_subscribe list are added to the
|
|
// set of tracked resources and all resource names in the resource_names_unsubscribe
|
|
// list are removed from the set of tracked resources.
|
|
// Unlike in non incremental xDS, an empty resource_names_subscribe or
|
|
// resource_names_unsubscribe list simply means that no resources are to be
|
|
// added or removed to the resource list.
|
|
// The xDS server must send updates for all tracked resources but can also
|
|
// send updates for resources the client has not subscribed to. This behavior
|
|
// is similar to non incremental xDS.
|
|
// These two fields can be set for all types of IncrementalDiscoveryRequests
|
|
// (initial, ACK/NACK or spontaneous).
|
|
//
|
|
// A list of Resource names to add to the list of tracked resources.
|
|
ResourceNamesSubscribe []string `protobuf:"bytes,3,rep,name=resource_names_subscribe,json=resourceNamesSubscribe" json:"resource_names_subscribe,omitempty"`
|
|
// A list of Resource names to remove from the list of tracked resources.
|
|
ResourceNamesUnsubscribe []string `protobuf:"bytes,4,rep,name=resource_names_unsubscribe,json=resourceNamesUnsubscribe" json:"resource_names_unsubscribe,omitempty"`
|
|
// This map must be populated when the IncrementalDiscoveryRequest is the
|
|
// first in a stream. The keys are the resources names of the xDS resources
|
|
// known to the xDS client. The values in the map are the associated resource
|
|
// level version info.
|
|
InitialResourceVersions map[string]string `protobuf:"bytes,5,rep,name=initial_resource_versions,json=initialResourceVersions" json:"initial_resource_versions,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
|
// When the IncrementalDiscoveryRequest is a ACK or NACK message in response
|
|
// to a previous IncrementalDiscoveryResponse, the response_nonce must be the
|
|
// nonce in the IncrementalDiscoveryResponse.
|
|
// Otherwise response_nonce must be omitted.
|
|
ResponseNonce string `protobuf:"bytes,6,opt,name=response_nonce,json=responseNonce,proto3" json:"response_nonce,omitempty"`
|
|
// This is populated when the previous :ref:`DiscoveryResponse <envoy_api_msg_DiscoveryResponse>`
|
|
// failed to update configuration. The *message* field in *error_details*
|
|
// provides the Envoy internal exception related to the failure.
|
|
ErrorDetail *rpc.Status `protobuf:"bytes,7,opt,name=error_detail,json=errorDetail" json:"error_detail,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryRequest) Reset() { *m = IncrementalDiscoveryRequest{} }
|
|
func (m *IncrementalDiscoveryRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*IncrementalDiscoveryRequest) ProtoMessage() {}
|
|
func (*IncrementalDiscoveryRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_discovery_51dc66d5d71581c9, []int{2}
|
|
}
|
|
func (m *IncrementalDiscoveryRequest) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *IncrementalDiscoveryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_IncrementalDiscoveryRequest.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalTo(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (dst *IncrementalDiscoveryRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IncrementalDiscoveryRequest.Merge(dst, src)
|
|
}
|
|
func (m *IncrementalDiscoveryRequest) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *IncrementalDiscoveryRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IncrementalDiscoveryRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IncrementalDiscoveryRequest proto.InternalMessageInfo
|
|
|
|
func (m *IncrementalDiscoveryRequest) GetNode() *core.Node {
|
|
if m != nil {
|
|
return m.Node
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryRequest) GetTypeUrl() string {
|
|
if m != nil {
|
|
return m.TypeUrl
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryRequest) GetResourceNamesSubscribe() []string {
|
|
if m != nil {
|
|
return m.ResourceNamesSubscribe
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryRequest) GetResourceNamesUnsubscribe() []string {
|
|
if m != nil {
|
|
return m.ResourceNamesUnsubscribe
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryRequest) GetInitialResourceVersions() map[string]string {
|
|
if m != nil {
|
|
return m.InitialResourceVersions
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryRequest) GetResponseNonce() string {
|
|
if m != nil {
|
|
return m.ResponseNonce
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryRequest) GetErrorDetail() *rpc.Status {
|
|
if m != nil {
|
|
return m.ErrorDetail
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type IncrementalDiscoveryResponse struct {
|
|
// The version of the response data (used for debugging).
|
|
SystemVersionInfo string `protobuf:"bytes,1,opt,name=system_version_info,json=systemVersionInfo,proto3" json:"system_version_info,omitempty"`
|
|
// The response resources. These are typed resources that match the type url
|
|
// in the IncrementalDiscoveryRequest.
|
|
Resources []Resource `protobuf:"bytes,2,rep,name=resources" json:"resources"`
|
|
// Resources names of resources that have be deleted and to be removed from the xDS Client.
|
|
// Removed resources for missing resources can be ignored.
|
|
RemovedResources []string `protobuf:"bytes,6,rep,name=removed_resources,json=removedResources" json:"removed_resources,omitempty"`
|
|
// The nonce provides a way for IncrementalDiscoveryRequests to uniquely
|
|
// reference a IncrementalDiscoveryResponse. The nonce is required.
|
|
Nonce string `protobuf:"bytes,5,opt,name=nonce,proto3" json:"nonce,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryResponse) Reset() { *m = IncrementalDiscoveryResponse{} }
|
|
func (m *IncrementalDiscoveryResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*IncrementalDiscoveryResponse) ProtoMessage() {}
|
|
func (*IncrementalDiscoveryResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_discovery_51dc66d5d71581c9, []int{3}
|
|
}
|
|
func (m *IncrementalDiscoveryResponse) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *IncrementalDiscoveryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_IncrementalDiscoveryResponse.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalTo(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (dst *IncrementalDiscoveryResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IncrementalDiscoveryResponse.Merge(dst, src)
|
|
}
|
|
func (m *IncrementalDiscoveryResponse) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *IncrementalDiscoveryResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IncrementalDiscoveryResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IncrementalDiscoveryResponse proto.InternalMessageInfo
|
|
|
|
func (m *IncrementalDiscoveryResponse) GetSystemVersionInfo() string {
|
|
if m != nil {
|
|
return m.SystemVersionInfo
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryResponse) GetResources() []Resource {
|
|
if m != nil {
|
|
return m.Resources
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryResponse) GetRemovedResources() []string {
|
|
if m != nil {
|
|
return m.RemovedResources
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryResponse) GetNonce() string {
|
|
if m != nil {
|
|
return m.Nonce
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Resource struct {
|
|
// The resource level version. It allows xDS to track the state of individual
|
|
// resources.
|
|
Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
|
|
// The resource being tracked.
|
|
Resource *types.Any `protobuf:"bytes,2,opt,name=resource" json:"resource,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Resource) Reset() { *m = Resource{} }
|
|
func (m *Resource) String() string { return proto.CompactTextString(m) }
|
|
func (*Resource) ProtoMessage() {}
|
|
func (*Resource) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_discovery_51dc66d5d71581c9, []int{4}
|
|
}
|
|
func (m *Resource) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *Resource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_Resource.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalTo(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (dst *Resource) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Resource.Merge(dst, src)
|
|
}
|
|
func (m *Resource) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *Resource) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Resource.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Resource proto.InternalMessageInfo
|
|
|
|
func (m *Resource) GetVersion() string {
|
|
if m != nil {
|
|
return m.Version
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Resource) GetResource() *types.Any {
|
|
if m != nil {
|
|
return m.Resource
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*DiscoveryRequest)(nil), "envoy.api.v2.DiscoveryRequest")
|
|
proto.RegisterType((*DiscoveryResponse)(nil), "envoy.api.v2.DiscoveryResponse")
|
|
proto.RegisterType((*IncrementalDiscoveryRequest)(nil), "envoy.api.v2.IncrementalDiscoveryRequest")
|
|
proto.RegisterMapType((map[string]string)(nil), "envoy.api.v2.IncrementalDiscoveryRequest.InitialResourceVersionsEntry")
|
|
proto.RegisterType((*IncrementalDiscoveryResponse)(nil), "envoy.api.v2.IncrementalDiscoveryResponse")
|
|
proto.RegisterType((*Resource)(nil), "envoy.api.v2.Resource")
|
|
}
|
|
func (this *DiscoveryRequest) Equal(that interface{}) bool {
|
|
if that == nil {
|
|
return this == nil
|
|
}
|
|
|
|
that1, ok := that.(*DiscoveryRequest)
|
|
if !ok {
|
|
that2, ok := that.(DiscoveryRequest)
|
|
if ok {
|
|
that1 = &that2
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
if that1 == nil {
|
|
return this == nil
|
|
} else if this == nil {
|
|
return false
|
|
}
|
|
if this.VersionInfo != that1.VersionInfo {
|
|
return false
|
|
}
|
|
if !this.Node.Equal(that1.Node) {
|
|
return false
|
|
}
|
|
if len(this.ResourceNames) != len(that1.ResourceNames) {
|
|
return false
|
|
}
|
|
for i := range this.ResourceNames {
|
|
if this.ResourceNames[i] != that1.ResourceNames[i] {
|
|
return false
|
|
}
|
|
}
|
|
if this.TypeUrl != that1.TypeUrl {
|
|
return false
|
|
}
|
|
if this.ResponseNonce != that1.ResponseNonce {
|
|
return false
|
|
}
|
|
if !this.ErrorDetail.Equal(that1.ErrorDetail) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
func (this *DiscoveryResponse) Equal(that interface{}) bool {
|
|
if that == nil {
|
|
return this == nil
|
|
}
|
|
|
|
that1, ok := that.(*DiscoveryResponse)
|
|
if !ok {
|
|
that2, ok := that.(DiscoveryResponse)
|
|
if ok {
|
|
that1 = &that2
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
if that1 == nil {
|
|
return this == nil
|
|
} else if this == nil {
|
|
return false
|
|
}
|
|
if this.VersionInfo != that1.VersionInfo {
|
|
return false
|
|
}
|
|
if len(this.Resources) != len(that1.Resources) {
|
|
return false
|
|
}
|
|
for i := range this.Resources {
|
|
if !this.Resources[i].Equal(&that1.Resources[i]) {
|
|
return false
|
|
}
|
|
}
|
|
if this.Canary != that1.Canary {
|
|
return false
|
|
}
|
|
if this.TypeUrl != that1.TypeUrl {
|
|
return false
|
|
}
|
|
if this.Nonce != that1.Nonce {
|
|
return false
|
|
}
|
|
if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
func (this *IncrementalDiscoveryRequest) Equal(that interface{}) bool {
|
|
if that == nil {
|
|
return this == nil
|
|
}
|
|
|
|
that1, ok := that.(*IncrementalDiscoveryRequest)
|
|
if !ok {
|
|
that2, ok := that.(IncrementalDiscoveryRequest)
|
|
if ok {
|
|
that1 = &that2
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
if that1 == nil {
|
|
return this == nil
|
|
} else if this == nil {
|
|
return false
|
|
}
|
|
if !this.Node.Equal(that1.Node) {
|
|
return false
|
|
}
|
|
if this.TypeUrl != that1.TypeUrl {
|
|
return false
|
|
}
|
|
if len(this.ResourceNamesSubscribe) != len(that1.ResourceNamesSubscribe) {
|
|
return false
|
|
}
|
|
for i := range this.ResourceNamesSubscribe {
|
|
if this.ResourceNamesSubscribe[i] != that1.ResourceNamesSubscribe[i] {
|
|
return false
|
|
}
|
|
}
|
|
if len(this.ResourceNamesUnsubscribe) != len(that1.ResourceNamesUnsubscribe) {
|
|
return false
|
|
}
|
|
for i := range this.ResourceNamesUnsubscribe {
|
|
if this.ResourceNamesUnsubscribe[i] != that1.ResourceNamesUnsubscribe[i] {
|
|
return false
|
|
}
|
|
}
|
|
if len(this.InitialResourceVersions) != len(that1.InitialResourceVersions) {
|
|
return false
|
|
}
|
|
for i := range this.InitialResourceVersions {
|
|
if this.InitialResourceVersions[i] != that1.InitialResourceVersions[i] {
|
|
return false
|
|
}
|
|
}
|
|
if this.ResponseNonce != that1.ResponseNonce {
|
|
return false
|
|
}
|
|
if !this.ErrorDetail.Equal(that1.ErrorDetail) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
func (this *IncrementalDiscoveryResponse) Equal(that interface{}) bool {
|
|
if that == nil {
|
|
return this == nil
|
|
}
|
|
|
|
that1, ok := that.(*IncrementalDiscoveryResponse)
|
|
if !ok {
|
|
that2, ok := that.(IncrementalDiscoveryResponse)
|
|
if ok {
|
|
that1 = &that2
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
if that1 == nil {
|
|
return this == nil
|
|
} else if this == nil {
|
|
return false
|
|
}
|
|
if this.SystemVersionInfo != that1.SystemVersionInfo {
|
|
return false
|
|
}
|
|
if len(this.Resources) != len(that1.Resources) {
|
|
return false
|
|
}
|
|
for i := range this.Resources {
|
|
if !this.Resources[i].Equal(&that1.Resources[i]) {
|
|
return false
|
|
}
|
|
}
|
|
if len(this.RemovedResources) != len(that1.RemovedResources) {
|
|
return false
|
|
}
|
|
for i := range this.RemovedResources {
|
|
if this.RemovedResources[i] != that1.RemovedResources[i] {
|
|
return false
|
|
}
|
|
}
|
|
if this.Nonce != that1.Nonce {
|
|
return false
|
|
}
|
|
if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
func (this *Resource) Equal(that interface{}) bool {
|
|
if that == nil {
|
|
return this == nil
|
|
}
|
|
|
|
that1, ok := that.(*Resource)
|
|
if !ok {
|
|
that2, ok := that.(Resource)
|
|
if ok {
|
|
that1 = &that2
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
if that1 == nil {
|
|
return this == nil
|
|
} else if this == nil {
|
|
return false
|
|
}
|
|
if this.Version != that1.Version {
|
|
return false
|
|
}
|
|
if !this.Resource.Equal(that1.Resource) {
|
|
return false
|
|
}
|
|
if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
func (m *DiscoveryRequest) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalTo(dAtA)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *DiscoveryRequest) MarshalTo(dAtA []byte) (int, error) {
|
|
var i int
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
if len(m.VersionInfo) > 0 {
|
|
dAtA[i] = 0xa
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.VersionInfo)))
|
|
i += copy(dAtA[i:], m.VersionInfo)
|
|
}
|
|
if m.Node != nil {
|
|
dAtA[i] = 0x12
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(m.Node.Size()))
|
|
n1, err := m.Node.MarshalTo(dAtA[i:])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
i += n1
|
|
}
|
|
if len(m.ResourceNames) > 0 {
|
|
for _, s := range m.ResourceNames {
|
|
dAtA[i] = 0x1a
|
|
i++
|
|
l = len(s)
|
|
for l >= 1<<7 {
|
|
dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
|
|
l >>= 7
|
|
i++
|
|
}
|
|
dAtA[i] = uint8(l)
|
|
i++
|
|
i += copy(dAtA[i:], s)
|
|
}
|
|
}
|
|
if len(m.TypeUrl) > 0 {
|
|
dAtA[i] = 0x22
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.TypeUrl)))
|
|
i += copy(dAtA[i:], m.TypeUrl)
|
|
}
|
|
if len(m.ResponseNonce) > 0 {
|
|
dAtA[i] = 0x2a
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.ResponseNonce)))
|
|
i += copy(dAtA[i:], m.ResponseNonce)
|
|
}
|
|
if m.ErrorDetail != nil {
|
|
dAtA[i] = 0x32
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(m.ErrorDetail.Size()))
|
|
n2, err := m.ErrorDetail.MarshalTo(dAtA[i:])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
i += n2
|
|
}
|
|
if m.XXX_unrecognized != nil {
|
|
i += copy(dAtA[i:], m.XXX_unrecognized)
|
|
}
|
|
return i, nil
|
|
}
|
|
|
|
func (m *DiscoveryResponse) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalTo(dAtA)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *DiscoveryResponse) MarshalTo(dAtA []byte) (int, error) {
|
|
var i int
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
if len(m.VersionInfo) > 0 {
|
|
dAtA[i] = 0xa
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.VersionInfo)))
|
|
i += copy(dAtA[i:], m.VersionInfo)
|
|
}
|
|
if len(m.Resources) > 0 {
|
|
for _, msg := range m.Resources {
|
|
dAtA[i] = 0x12
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(msg.Size()))
|
|
n, err := msg.MarshalTo(dAtA[i:])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
i += n
|
|
}
|
|
}
|
|
if m.Canary {
|
|
dAtA[i] = 0x18
|
|
i++
|
|
if m.Canary {
|
|
dAtA[i] = 1
|
|
} else {
|
|
dAtA[i] = 0
|
|
}
|
|
i++
|
|
}
|
|
if len(m.TypeUrl) > 0 {
|
|
dAtA[i] = 0x22
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.TypeUrl)))
|
|
i += copy(dAtA[i:], m.TypeUrl)
|
|
}
|
|
if len(m.Nonce) > 0 {
|
|
dAtA[i] = 0x2a
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.Nonce)))
|
|
i += copy(dAtA[i:], m.Nonce)
|
|
}
|
|
if m.XXX_unrecognized != nil {
|
|
i += copy(dAtA[i:], m.XXX_unrecognized)
|
|
}
|
|
return i, nil
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryRequest) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalTo(dAtA)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryRequest) MarshalTo(dAtA []byte) (int, error) {
|
|
var i int
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
if m.Node != nil {
|
|
dAtA[i] = 0xa
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(m.Node.Size()))
|
|
n3, err := m.Node.MarshalTo(dAtA[i:])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
i += n3
|
|
}
|
|
if len(m.TypeUrl) > 0 {
|
|
dAtA[i] = 0x12
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.TypeUrl)))
|
|
i += copy(dAtA[i:], m.TypeUrl)
|
|
}
|
|
if len(m.ResourceNamesSubscribe) > 0 {
|
|
for _, s := range m.ResourceNamesSubscribe {
|
|
dAtA[i] = 0x1a
|
|
i++
|
|
l = len(s)
|
|
for l >= 1<<7 {
|
|
dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
|
|
l >>= 7
|
|
i++
|
|
}
|
|
dAtA[i] = uint8(l)
|
|
i++
|
|
i += copy(dAtA[i:], s)
|
|
}
|
|
}
|
|
if len(m.ResourceNamesUnsubscribe) > 0 {
|
|
for _, s := range m.ResourceNamesUnsubscribe {
|
|
dAtA[i] = 0x22
|
|
i++
|
|
l = len(s)
|
|
for l >= 1<<7 {
|
|
dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
|
|
l >>= 7
|
|
i++
|
|
}
|
|
dAtA[i] = uint8(l)
|
|
i++
|
|
i += copy(dAtA[i:], s)
|
|
}
|
|
}
|
|
if len(m.InitialResourceVersions) > 0 {
|
|
for k, _ := range m.InitialResourceVersions {
|
|
dAtA[i] = 0x2a
|
|
i++
|
|
v := m.InitialResourceVersions[k]
|
|
mapSize := 1 + len(k) + sovDiscovery(uint64(len(k))) + 1 + len(v) + sovDiscovery(uint64(len(v)))
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(mapSize))
|
|
dAtA[i] = 0xa
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(len(k)))
|
|
i += copy(dAtA[i:], k)
|
|
dAtA[i] = 0x12
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(len(v)))
|
|
i += copy(dAtA[i:], v)
|
|
}
|
|
}
|
|
if len(m.ResponseNonce) > 0 {
|
|
dAtA[i] = 0x32
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.ResponseNonce)))
|
|
i += copy(dAtA[i:], m.ResponseNonce)
|
|
}
|
|
if m.ErrorDetail != nil {
|
|
dAtA[i] = 0x3a
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(m.ErrorDetail.Size()))
|
|
n4, err := m.ErrorDetail.MarshalTo(dAtA[i:])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
i += n4
|
|
}
|
|
if m.XXX_unrecognized != nil {
|
|
i += copy(dAtA[i:], m.XXX_unrecognized)
|
|
}
|
|
return i, nil
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryResponse) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalTo(dAtA)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryResponse) MarshalTo(dAtA []byte) (int, error) {
|
|
var i int
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
if len(m.SystemVersionInfo) > 0 {
|
|
dAtA[i] = 0xa
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.SystemVersionInfo)))
|
|
i += copy(dAtA[i:], m.SystemVersionInfo)
|
|
}
|
|
if len(m.Resources) > 0 {
|
|
for _, msg := range m.Resources {
|
|
dAtA[i] = 0x12
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(msg.Size()))
|
|
n, err := msg.MarshalTo(dAtA[i:])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
i += n
|
|
}
|
|
}
|
|
if len(m.Nonce) > 0 {
|
|
dAtA[i] = 0x2a
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.Nonce)))
|
|
i += copy(dAtA[i:], m.Nonce)
|
|
}
|
|
if len(m.RemovedResources) > 0 {
|
|
for _, s := range m.RemovedResources {
|
|
dAtA[i] = 0x32
|
|
i++
|
|
l = len(s)
|
|
for l >= 1<<7 {
|
|
dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
|
|
l >>= 7
|
|
i++
|
|
}
|
|
dAtA[i] = uint8(l)
|
|
i++
|
|
i += copy(dAtA[i:], s)
|
|
}
|
|
}
|
|
if m.XXX_unrecognized != nil {
|
|
i += copy(dAtA[i:], m.XXX_unrecognized)
|
|
}
|
|
return i, nil
|
|
}
|
|
|
|
func (m *Resource) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalTo(dAtA)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *Resource) MarshalTo(dAtA []byte) (int, error) {
|
|
var i int
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
if len(m.Version) > 0 {
|
|
dAtA[i] = 0xa
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(len(m.Version)))
|
|
i += copy(dAtA[i:], m.Version)
|
|
}
|
|
if m.Resource != nil {
|
|
dAtA[i] = 0x12
|
|
i++
|
|
i = encodeVarintDiscovery(dAtA, i, uint64(m.Resource.Size()))
|
|
n5, err := m.Resource.MarshalTo(dAtA[i:])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
i += n5
|
|
}
|
|
if m.XXX_unrecognized != nil {
|
|
i += copy(dAtA[i:], m.XXX_unrecognized)
|
|
}
|
|
return i, nil
|
|
}
|
|
|
|
func encodeVarintDiscovery(dAtA []byte, offset int, v uint64) int {
|
|
for v >= 1<<7 {
|
|
dAtA[offset] = uint8(v&0x7f | 0x80)
|
|
v >>= 7
|
|
offset++
|
|
}
|
|
dAtA[offset] = uint8(v)
|
|
return offset + 1
|
|
}
|
|
func (m *DiscoveryRequest) Size() (n int) {
|
|
var l int
|
|
_ = l
|
|
l = len(m.VersionInfo)
|
|
if l > 0 {
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
if m.Node != nil {
|
|
l = m.Node.Size()
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
if len(m.ResourceNames) > 0 {
|
|
for _, s := range m.ResourceNames {
|
|
l = len(s)
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
}
|
|
l = len(m.TypeUrl)
|
|
if l > 0 {
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
l = len(m.ResponseNonce)
|
|
if l > 0 {
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
if m.ErrorDetail != nil {
|
|
l = m.ErrorDetail.Size()
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
if m.XXX_unrecognized != nil {
|
|
n += len(m.XXX_unrecognized)
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (m *DiscoveryResponse) Size() (n int) {
|
|
var l int
|
|
_ = l
|
|
l = len(m.VersionInfo)
|
|
if l > 0 {
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
if len(m.Resources) > 0 {
|
|
for _, e := range m.Resources {
|
|
l = e.Size()
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
}
|
|
if m.Canary {
|
|
n += 2
|
|
}
|
|
l = len(m.TypeUrl)
|
|
if l > 0 {
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
l = len(m.Nonce)
|
|
if l > 0 {
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
if m.XXX_unrecognized != nil {
|
|
n += len(m.XXX_unrecognized)
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryRequest) Size() (n int) {
|
|
var l int
|
|
_ = l
|
|
if m.Node != nil {
|
|
l = m.Node.Size()
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
l = len(m.TypeUrl)
|
|
if l > 0 {
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
if len(m.ResourceNamesSubscribe) > 0 {
|
|
for _, s := range m.ResourceNamesSubscribe {
|
|
l = len(s)
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
}
|
|
if len(m.ResourceNamesUnsubscribe) > 0 {
|
|
for _, s := range m.ResourceNamesUnsubscribe {
|
|
l = len(s)
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
}
|
|
if len(m.InitialResourceVersions) > 0 {
|
|
for k, v := range m.InitialResourceVersions {
|
|
_ = k
|
|
_ = v
|
|
mapEntrySize := 1 + len(k) + sovDiscovery(uint64(len(k))) + 1 + len(v) + sovDiscovery(uint64(len(v)))
|
|
n += mapEntrySize + 1 + sovDiscovery(uint64(mapEntrySize))
|
|
}
|
|
}
|
|
l = len(m.ResponseNonce)
|
|
if l > 0 {
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
if m.ErrorDetail != nil {
|
|
l = m.ErrorDetail.Size()
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
if m.XXX_unrecognized != nil {
|
|
n += len(m.XXX_unrecognized)
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (m *IncrementalDiscoveryResponse) Size() (n int) {
|
|
var l int
|
|
_ = l
|
|
l = len(m.SystemVersionInfo)
|
|
if l > 0 {
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
if len(m.Resources) > 0 {
|
|
for _, e := range m.Resources {
|
|
l = e.Size()
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
}
|
|
l = len(m.Nonce)
|
|
if l > 0 {
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
if len(m.RemovedResources) > 0 {
|
|
for _, s := range m.RemovedResources {
|
|
l = len(s)
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
}
|
|
if m.XXX_unrecognized != nil {
|
|
n += len(m.XXX_unrecognized)
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (m *Resource) Size() (n int) {
|
|
var l int
|
|
_ = l
|
|
l = len(m.Version)
|
|
if l > 0 {
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
if m.Resource != nil {
|
|
l = m.Resource.Size()
|
|
n += 1 + l + sovDiscovery(uint64(l))
|
|
}
|
|
if m.XXX_unrecognized != nil {
|
|
n += len(m.XXX_unrecognized)
|
|
}
|
|
return n
|
|
}
|
|
|
|
func sovDiscovery(x uint64) (n int) {
|
|
for {
|
|
n++
|
|
x >>= 7
|
|
if x == 0 {
|
|
break
|
|
}
|
|
}
|
|
return n
|
|
}
|
|
func sozDiscovery(x uint64) (n int) {
|
|
return sovDiscovery(uint64((x << 1) ^ uint64((int64(x) >> 63))))
|
|
}
|
|
func (m *DiscoveryRequest) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: DiscoveryRequest: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: DiscoveryRequest: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field VersionInfo", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.VersionInfo = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Node", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= (int(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if m.Node == nil {
|
|
m.Node = &core.Node{}
|
|
}
|
|
if err := m.Node.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
case 3:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field ResourceNames", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.ResourceNames = append(m.ResourceNames, string(dAtA[iNdEx:postIndex]))
|
|
iNdEx = postIndex
|
|
case 4:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field TypeUrl", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.TypeUrl = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 5:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field ResponseNonce", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.ResponseNonce = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 6:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field ErrorDetail", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= (int(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if m.ErrorDetail == nil {
|
|
m.ErrorDetail = &rpc.Status{}
|
|
}
|
|
if err := m.ErrorDetail.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipDiscovery(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if skippy < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func (m *DiscoveryResponse) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: DiscoveryResponse: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: DiscoveryResponse: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field VersionInfo", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.VersionInfo = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Resources", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= (int(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Resources = append(m.Resources, types.Any{})
|
|
if err := m.Resources[len(m.Resources)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
case 3:
|
|
if wireType != 0 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Canary", wireType)
|
|
}
|
|
var v int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
v |= (int(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
m.Canary = bool(v != 0)
|
|
case 4:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field TypeUrl", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.TypeUrl = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 5:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Nonce", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Nonce = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipDiscovery(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if skippy < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func (m *IncrementalDiscoveryRequest) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: IncrementalDiscoveryRequest: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: IncrementalDiscoveryRequest: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Node", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= (int(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if m.Node == nil {
|
|
m.Node = &core.Node{}
|
|
}
|
|
if err := m.Node.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field TypeUrl", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.TypeUrl = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 3:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field ResourceNamesSubscribe", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.ResourceNamesSubscribe = append(m.ResourceNamesSubscribe, string(dAtA[iNdEx:postIndex]))
|
|
iNdEx = postIndex
|
|
case 4:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field ResourceNamesUnsubscribe", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.ResourceNamesUnsubscribe = append(m.ResourceNamesUnsubscribe, string(dAtA[iNdEx:postIndex]))
|
|
iNdEx = postIndex
|
|
case 5:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field InitialResourceVersions", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= (int(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if m.InitialResourceVersions == nil {
|
|
m.InitialResourceVersions = make(map[string]string)
|
|
}
|
|
var mapkey string
|
|
var mapvalue string
|
|
for iNdEx < postIndex {
|
|
entryPreIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
if fieldNum == 1 {
|
|
var stringLenmapkey uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLenmapkey |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLenmapkey := int(stringLenmapkey)
|
|
if intStringLenmapkey < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postStringIndexmapkey := iNdEx + intStringLenmapkey
|
|
if postStringIndexmapkey > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
|
|
iNdEx = postStringIndexmapkey
|
|
} else if fieldNum == 2 {
|
|
var stringLenmapvalue uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLenmapvalue |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLenmapvalue := int(stringLenmapvalue)
|
|
if intStringLenmapvalue < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postStringIndexmapvalue := iNdEx + intStringLenmapvalue
|
|
if postStringIndexmapvalue > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
|
|
iNdEx = postStringIndexmapvalue
|
|
} else {
|
|
iNdEx = entryPreIndex
|
|
skippy, err := skipDiscovery(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if skippy < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
if (iNdEx + skippy) > postIndex {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
m.InitialResourceVersions[mapkey] = mapvalue
|
|
iNdEx = postIndex
|
|
case 6:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field ResponseNonce", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.ResponseNonce = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 7:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field ErrorDetail", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= (int(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if m.ErrorDetail == nil {
|
|
m.ErrorDetail = &rpc.Status{}
|
|
}
|
|
if err := m.ErrorDetail.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipDiscovery(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if skippy < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func (m *IncrementalDiscoveryResponse) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: IncrementalDiscoveryResponse: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: IncrementalDiscoveryResponse: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field SystemVersionInfo", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.SystemVersionInfo = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Resources", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= (int(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Resources = append(m.Resources, Resource{})
|
|
if err := m.Resources[len(m.Resources)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
case 5:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Nonce", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Nonce = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 6:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field RemovedResources", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.RemovedResources = append(m.RemovedResources, string(dAtA[iNdEx:postIndex]))
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipDiscovery(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if skippy < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func (m *Resource) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: Resource: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: Resource: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Version = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Resource", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= (int(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if m.Resource == nil {
|
|
m.Resource = &types.Any{}
|
|
}
|
|
if err := m.Resource.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipDiscovery(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if skippy < 0 {
|
|
return ErrInvalidLengthDiscovery
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...)
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func skipDiscovery(dAtA []byte) (n int, err error) {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return 0, ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return 0, io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
wireType := int(wire & 0x7)
|
|
switch wireType {
|
|
case 0:
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return 0, ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return 0, io.ErrUnexpectedEOF
|
|
}
|
|
iNdEx++
|
|
if dAtA[iNdEx-1] < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
return iNdEx, nil
|
|
case 1:
|
|
iNdEx += 8
|
|
return iNdEx, nil
|
|
case 2:
|
|
var length int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return 0, ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return 0, io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
length |= (int(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
iNdEx += length
|
|
if length < 0 {
|
|
return 0, ErrInvalidLengthDiscovery
|
|
}
|
|
return iNdEx, nil
|
|
case 3:
|
|
for {
|
|
var innerWire uint64
|
|
var start int = iNdEx
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return 0, ErrIntOverflowDiscovery
|
|
}
|
|
if iNdEx >= l {
|
|
return 0, io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
innerWire |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
innerWireType := int(innerWire & 0x7)
|
|
if innerWireType == 4 {
|
|
break
|
|
}
|
|
next, err := skipDiscovery(dAtA[start:])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
iNdEx = start + next
|
|
}
|
|
return iNdEx, nil
|
|
case 4:
|
|
return iNdEx, nil
|
|
case 5:
|
|
iNdEx += 4
|
|
return iNdEx, nil
|
|
default:
|
|
return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
|
|
}
|
|
}
|
|
panic("unreachable")
|
|
}
|
|
|
|
var (
|
|
ErrInvalidLengthDiscovery = fmt.Errorf("proto: negative length found during unmarshaling")
|
|
ErrIntOverflowDiscovery = fmt.Errorf("proto: integer overflow")
|
|
)
|
|
|
|
func init() {
|
|
proto.RegisterFile("envoy/api/v2/discovery.proto", fileDescriptor_discovery_51dc66d5d71581c9)
|
|
}
|
|
|
|
var fileDescriptor_discovery_51dc66d5d71581c9 = []byte{
|
|
// 633 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xc1, 0x6a, 0xdb, 0x4c,
|
|
0x10, 0xfe, 0xd7, 0x76, 0x1c, 0x67, 0x9d, 0xfc, 0x24, 0x5b, 0x93, 0x28, 0x6e, 0x70, 0x5d, 0x43,
|
|
0xc1, 0x10, 0x58, 0x15, 0x97, 0x42, 0x08, 0xbd, 0x34, 0xa4, 0x85, 0xf4, 0x90, 0x83, 0x42, 0x72,
|
|
0xe8, 0x45, 0xac, 0xe5, 0x89, 0x11, 0x95, 0x77, 0xd5, 0x5d, 0x49, 0xa0, 0x6b, 0xce, 0x7d, 0x90,
|
|
0xbe, 0x42, 0xdf, 0x20, 0x97, 0x42, 0x9f, 0xa0, 0x14, 0x3f, 0x49, 0xd1, 0x6a, 0x37, 0xb6, 0x1a,
|
|
0x13, 0x7c, 0xdb, 0x99, 0xf9, 0xf6, 0xdb, 0x99, 0xf9, 0x3e, 0x09, 0x1f, 0x01, 0xcf, 0x44, 0xee,
|
|
0xb2, 0x38, 0x74, 0xb3, 0x91, 0x3b, 0x09, 0x55, 0x20, 0x32, 0x90, 0x39, 0x8d, 0xa5, 0x48, 0x04,
|
|
0xd9, 0xd6, 0x55, 0xca, 0xe2, 0x90, 0x66, 0xa3, 0x6e, 0x15, 0x1b, 0x08, 0x09, 0xee, 0x98, 0x29,
|
|
0x28, 0xb1, 0xdd, 0xc3, 0xa9, 0x10, 0xd3, 0x08, 0x5c, 0x1d, 0x8d, 0xd3, 0x5b, 0x97, 0x71, 0x43,
|
|
0xd3, 0x3d, 0x30, 0x25, 0x19, 0x07, 0xae, 0x4a, 0x58, 0x92, 0x2a, 0x53, 0xe8, 0x4c, 0xc5, 0x54,
|
|
0xe8, 0xa3, 0x5b, 0x9c, 0xca, 0xec, 0xe0, 0xae, 0x86, 0x77, 0xcf, 0x6d, 0x27, 0x1e, 0x7c, 0x4d,
|
|
0x41, 0x25, 0xe4, 0x25, 0xde, 0xce, 0x40, 0xaa, 0x50, 0x70, 0x3f, 0xe4, 0xb7, 0xc2, 0x41, 0x7d,
|
|
0x34, 0xdc, 0xf2, 0xda, 0x26, 0x77, 0xc1, 0x6f, 0x05, 0x39, 0xc6, 0x0d, 0x2e, 0x26, 0xe0, 0xd4,
|
|
0xfa, 0x68, 0xd8, 0x1e, 0x1d, 0xd0, 0xe5, 0xe6, 0x69, 0xd1, 0x2e, 0xbd, 0x14, 0x13, 0xf0, 0x34,
|
|
0x88, 0xbc, 0xc2, 0xff, 0x4b, 0x50, 0x22, 0x95, 0x01, 0xf8, 0x9c, 0xcd, 0x40, 0x39, 0xf5, 0x7e,
|
|
0x7d, 0xb8, 0xe5, 0xed, 0xd8, 0xec, 0x65, 0x91, 0x24, 0x87, 0xb8, 0x95, 0xe4, 0x31, 0xf8, 0xa9,
|
|
0x8c, 0x9c, 0x86, 0x7e, 0x72, 0xb3, 0x88, 0xaf, 0x65, 0x64, 0x18, 0x62, 0xc1, 0x15, 0xf8, 0x5c,
|
|
0xf0, 0x00, 0x9c, 0x0d, 0x0d, 0xd8, 0xb1, 0xd9, 0xcb, 0x22, 0x49, 0xde, 0xe2, 0x6d, 0x90, 0x52,
|
|
0x48, 0x7f, 0x02, 0x09, 0x0b, 0x23, 0xa7, 0xa9, 0xbb, 0x23, 0xb4, 0xdc, 0x09, 0x95, 0x71, 0x40,
|
|
0xaf, 0xf4, 0x4e, 0xbc, 0xb6, 0xc6, 0x9d, 0x6b, 0xd8, 0xe0, 0x07, 0xc2, 0x7b, 0x4b, 0x4b, 0x28,
|
|
0x19, 0xd7, 0xd9, 0xc2, 0x09, 0xde, 0xb2, 0x23, 0x28, 0xa7, 0xd6, 0xaf, 0x0f, 0xdb, 0xa3, 0x8e,
|
|
0x7d, 0xcc, 0x6a, 0x43, 0xdf, 0xf3, 0xfc, 0xac, 0x71, 0xff, 0xfb, 0xc5, 0x7f, 0xde, 0x02, 0x4c,
|
|
0xf6, 0x71, 0x33, 0x60, 0x9c, 0xc9, 0xdc, 0xa9, 0xf7, 0xd1, 0xb0, 0xe5, 0x99, 0xe8, 0xa9, 0x1d,
|
|
0x74, 0xf0, 0xc6, 0xf2, 0xe8, 0x65, 0x30, 0xf8, 0xd6, 0xc0, 0xcf, 0x2f, 0x78, 0x20, 0x61, 0x06,
|
|
0x3c, 0x61, 0xd1, 0x23, 0x2d, 0xad, 0x50, 0x68, 0x1d, 0xa1, 0x96, 0x5f, 0xaf, 0x55, 0x5f, 0x3f,
|
|
0xc1, 0x4e, 0x55, 0x43, 0x5f, 0xa5, 0x63, 0x15, 0xc8, 0x70, 0x0c, 0x46, 0xcd, 0xfd, 0x8a, 0x9a,
|
|
0x57, 0xb6, 0x4a, 0xde, 0xe1, 0xee, 0x3f, 0x37, 0x53, 0xbe, 0xb8, 0xdb, 0xd0, 0x77, 0x9d, 0xca,
|
|
0xdd, 0xeb, 0x45, 0x9d, 0xdc, 0x21, 0x7c, 0x18, 0xf2, 0x30, 0x09, 0x59, 0xe4, 0x3f, 0xd0, 0x18,
|
|
0x0d, 0x94, 0xb3, 0xa1, 0x77, 0xfe, 0xb1, 0x3a, 0xd5, 0x13, 0xeb, 0xa0, 0x17, 0x25, 0x95, 0x67,
|
|
0x98, 0x6e, 0x0c, 0xd1, 0x07, 0x9e, 0xc8, 0xdc, 0x3b, 0x08, 0x57, 0x57, 0x57, 0xd8, 0xaf, 0xb9,
|
|
0x8e, 0xfd, 0x36, 0xd7, 0xb2, 0x5f, 0xf7, 0x13, 0x3e, 0x7a, 0xaa, 0x2d, 0xb2, 0x8b, 0xeb, 0x5f,
|
|
0x20, 0x37, 0xfe, 0x2b, 0x8e, 0x85, 0x15, 0x32, 0x16, 0xa5, 0x60, 0x44, 0x2a, 0x83, 0xd3, 0xda,
|
|
0x09, 0x1a, 0xfc, 0x44, 0x05, 0xd9, 0xaa, 0xf9, 0x8d, 0xab, 0x29, 0x7e, 0xa6, 0x72, 0x95, 0xc0,
|
|
0xcc, 0x5f, 0x61, 0xee, 0xbd, 0xb2, 0x74, 0xb3, 0x64, 0xf1, 0xd3, 0xc7, 0x16, 0xdf, 0xaf, 0xae,
|
|
0xdb, 0x36, 0xfd, 0xd8, 0xe4, 0x2b, 0x1d, 0x4b, 0x8e, 0xf1, 0x9e, 0x84, 0x99, 0xc8, 0x60, 0xe2,
|
|
0x2f, 0x98, 0x9b, 0xda, 0x06, 0xbb, 0xa6, 0x60, 0x29, 0xd5, 0xe0, 0x06, 0xb7, 0x6c, 0x40, 0x1c,
|
|
0xbc, 0x69, 0x7a, 0x36, 0xed, 0xda, 0x90, 0xbc, 0xc6, 0x2d, 0x4b, 0x65, 0xfe, 0x48, 0x2b, 0x3f,
|
|
0x43, 0xef, 0x01, 0x75, 0xd6, 0xf9, 0x3e, 0xef, 0xa1, 0xfb, 0x79, 0x0f, 0xfd, 0x9a, 0xf7, 0xd0,
|
|
0x9f, 0x79, 0x0f, 0x7d, 0xae, 0x65, 0xa3, 0x71, 0x53, 0xa3, 0xdf, 0xfc, 0x0d, 0x00, 0x00, 0xff,
|
|
0xff, 0x29, 0x86, 0xc0, 0x01, 0xaa, 0x05, 0x00, 0x00,
|
|
}
|