mirror of
				https://source.quilibrium.com/quilibrium/ceremonyclient.git
				synced 2025-11-04 03:07:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			728 lines
		
	
	
		
			24 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			728 lines
		
	
	
		
			24 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Code generated by protoc-gen-go. DO NOT EDIT.
 | 
						|
// versions:
 | 
						|
// 	protoc-gen-go v1.30.0
 | 
						|
// 	protoc        v3.21.12
 | 
						|
// source: pb/circuit.proto
 | 
						|
 | 
						|
package pb
 | 
						|
 | 
						|
import (
 | 
						|
	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
 | 
						|
	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
 | 
						|
	reflect "reflect"
 | 
						|
	sync "sync"
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	// Verify that this generated code is sufficiently up-to-date.
 | 
						|
	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
 | 
						|
	// Verify that runtime/protoimpl is sufficiently up-to-date.
 | 
						|
	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
 | 
						|
)
 | 
						|
 | 
						|
type Status int32
 | 
						|
 | 
						|
const (
 | 
						|
	// zero value field required for proto3 compatibility
 | 
						|
	Status_UNUSED                  Status = 0
 | 
						|
	Status_OK                      Status = 100
 | 
						|
	Status_RESERVATION_REFUSED     Status = 200
 | 
						|
	Status_RESOURCE_LIMIT_EXCEEDED Status = 201
 | 
						|
	Status_PERMISSION_DENIED       Status = 202
 | 
						|
	Status_CONNECTION_FAILED       Status = 203
 | 
						|
	Status_NO_RESERVATION          Status = 204
 | 
						|
	Status_MALFORMED_MESSAGE       Status = 400
 | 
						|
	Status_UNEXPECTED_MESSAGE      Status = 401
 | 
						|
)
 | 
						|
 | 
						|
// Enum value maps for Status.
 | 
						|
var (
 | 
						|
	Status_name = map[int32]string{
 | 
						|
		0:   "UNUSED",
 | 
						|
		100: "OK",
 | 
						|
		200: "RESERVATION_REFUSED",
 | 
						|
		201: "RESOURCE_LIMIT_EXCEEDED",
 | 
						|
		202: "PERMISSION_DENIED",
 | 
						|
		203: "CONNECTION_FAILED",
 | 
						|
		204: "NO_RESERVATION",
 | 
						|
		400: "MALFORMED_MESSAGE",
 | 
						|
		401: "UNEXPECTED_MESSAGE",
 | 
						|
	}
 | 
						|
	Status_value = map[string]int32{
 | 
						|
		"UNUSED":                  0,
 | 
						|
		"OK":                      100,
 | 
						|
		"RESERVATION_REFUSED":     200,
 | 
						|
		"RESOURCE_LIMIT_EXCEEDED": 201,
 | 
						|
		"PERMISSION_DENIED":       202,
 | 
						|
		"CONNECTION_FAILED":       203,
 | 
						|
		"NO_RESERVATION":          204,
 | 
						|
		"MALFORMED_MESSAGE":       400,
 | 
						|
		"UNEXPECTED_MESSAGE":      401,
 | 
						|
	}
 | 
						|
)
 | 
						|
 | 
						|
func (x Status) Enum() *Status {
 | 
						|
	p := new(Status)
 | 
						|
	*p = x
 | 
						|
	return p
 | 
						|
}
 | 
						|
 | 
						|
func (x Status) String() string {
 | 
						|
	return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
 | 
						|
}
 | 
						|
 | 
						|
func (Status) Descriptor() protoreflect.EnumDescriptor {
 | 
						|
	return file_pb_circuit_proto_enumTypes[0].Descriptor()
 | 
						|
}
 | 
						|
 | 
						|
func (Status) Type() protoreflect.EnumType {
 | 
						|
	return &file_pb_circuit_proto_enumTypes[0]
 | 
						|
}
 | 
						|
 | 
						|
func (x Status) Number() protoreflect.EnumNumber {
 | 
						|
	return protoreflect.EnumNumber(x)
 | 
						|
}
 | 
						|
 | 
						|
// Deprecated: Use Status.Descriptor instead.
 | 
						|
func (Status) EnumDescriptor() ([]byte, []int) {
 | 
						|
	return file_pb_circuit_proto_rawDescGZIP(), []int{0}
 | 
						|
}
 | 
						|
 | 
						|
type HopMessage_Type int32
 | 
						|
 | 
						|
const (
 | 
						|
	HopMessage_RESERVE HopMessage_Type = 0
 | 
						|
	HopMessage_CONNECT HopMessage_Type = 1
 | 
						|
	HopMessage_STATUS  HopMessage_Type = 2
 | 
						|
)
 | 
						|
 | 
						|
// Enum value maps for HopMessage_Type.
 | 
						|
var (
 | 
						|
	HopMessage_Type_name = map[int32]string{
 | 
						|
		0: "RESERVE",
 | 
						|
		1: "CONNECT",
 | 
						|
		2: "STATUS",
 | 
						|
	}
 | 
						|
	HopMessage_Type_value = map[string]int32{
 | 
						|
		"RESERVE": 0,
 | 
						|
		"CONNECT": 1,
 | 
						|
		"STATUS":  2,
 | 
						|
	}
 | 
						|
)
 | 
						|
 | 
						|
func (x HopMessage_Type) Enum() *HopMessage_Type {
 | 
						|
	p := new(HopMessage_Type)
 | 
						|
	*p = x
 | 
						|
	return p
 | 
						|
}
 | 
						|
 | 
						|
func (x HopMessage_Type) String() string {
 | 
						|
	return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
 | 
						|
}
 | 
						|
 | 
						|
func (HopMessage_Type) Descriptor() protoreflect.EnumDescriptor {
 | 
						|
	return file_pb_circuit_proto_enumTypes[1].Descriptor()
 | 
						|
}
 | 
						|
 | 
						|
func (HopMessage_Type) Type() protoreflect.EnumType {
 | 
						|
	return &file_pb_circuit_proto_enumTypes[1]
 | 
						|
}
 | 
						|
 | 
						|
func (x HopMessage_Type) Number() protoreflect.EnumNumber {
 | 
						|
	return protoreflect.EnumNumber(x)
 | 
						|
}
 | 
						|
 | 
						|
// Deprecated: Use HopMessage_Type.Descriptor instead.
 | 
						|
func (HopMessage_Type) EnumDescriptor() ([]byte, []int) {
 | 
						|
	return file_pb_circuit_proto_rawDescGZIP(), []int{0, 0}
 | 
						|
}
 | 
						|
 | 
						|
type StopMessage_Type int32
 | 
						|
 | 
						|
const (
 | 
						|
	StopMessage_CONNECT StopMessage_Type = 0
 | 
						|
	StopMessage_STATUS  StopMessage_Type = 1
 | 
						|
)
 | 
						|
 | 
						|
// Enum value maps for StopMessage_Type.
 | 
						|
var (
 | 
						|
	StopMessage_Type_name = map[int32]string{
 | 
						|
		0: "CONNECT",
 | 
						|
		1: "STATUS",
 | 
						|
	}
 | 
						|
	StopMessage_Type_value = map[string]int32{
 | 
						|
		"CONNECT": 0,
 | 
						|
		"STATUS":  1,
 | 
						|
	}
 | 
						|
)
 | 
						|
 | 
						|
func (x StopMessage_Type) Enum() *StopMessage_Type {
 | 
						|
	p := new(StopMessage_Type)
 | 
						|
	*p = x
 | 
						|
	return p
 | 
						|
}
 | 
						|
 | 
						|
func (x StopMessage_Type) String() string {
 | 
						|
	return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
 | 
						|
}
 | 
						|
 | 
						|
func (StopMessage_Type) Descriptor() protoreflect.EnumDescriptor {
 | 
						|
	return file_pb_circuit_proto_enumTypes[2].Descriptor()
 | 
						|
}
 | 
						|
 | 
						|
func (StopMessage_Type) Type() protoreflect.EnumType {
 | 
						|
	return &file_pb_circuit_proto_enumTypes[2]
 | 
						|
}
 | 
						|
 | 
						|
func (x StopMessage_Type) Number() protoreflect.EnumNumber {
 | 
						|
	return protoreflect.EnumNumber(x)
 | 
						|
}
 | 
						|
 | 
						|
// Deprecated: Use StopMessage_Type.Descriptor instead.
 | 
						|
func (StopMessage_Type) EnumDescriptor() ([]byte, []int) {
 | 
						|
	return file_pb_circuit_proto_rawDescGZIP(), []int{1, 0}
 | 
						|
}
 | 
						|
 | 
						|
type HopMessage struct {
 | 
						|
	state         protoimpl.MessageState
 | 
						|
	sizeCache     protoimpl.SizeCache
 | 
						|
	unknownFields protoimpl.UnknownFields
 | 
						|
 | 
						|
	// This field is marked optional for backwards compatibility with proto2.
 | 
						|
	// Users should make sure to always set this.
 | 
						|
	Type        *HopMessage_Type `protobuf:"varint,1,opt,name=type,proto3,enum=circuit.pb.HopMessage_Type,oneof" json:"type,omitempty"`
 | 
						|
	Peer        *Peer            `protobuf:"bytes,2,opt,name=peer,proto3,oneof" json:"peer,omitempty"`
 | 
						|
	Reservation *Reservation     `protobuf:"bytes,3,opt,name=reservation,proto3,oneof" json:"reservation,omitempty"`
 | 
						|
	Limit       *Limit           `protobuf:"bytes,4,opt,name=limit,proto3,oneof" json:"limit,omitempty"`
 | 
						|
	Status      *Status          `protobuf:"varint,5,opt,name=status,proto3,enum=circuit.pb.Status,oneof" json:"status,omitempty"`
 | 
						|
}
 | 
						|
 | 
						|
func (x *HopMessage) Reset() {
 | 
						|
	*x = HopMessage{}
 | 
						|
	if protoimpl.UnsafeEnabled {
 | 
						|
		mi := &file_pb_circuit_proto_msgTypes[0]
 | 
						|
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
						|
		ms.StoreMessageInfo(mi)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (x *HopMessage) String() string {
 | 
						|
	return protoimpl.X.MessageStringOf(x)
 | 
						|
}
 | 
						|
 | 
						|
func (*HopMessage) ProtoMessage() {}
 | 
						|
 | 
						|
func (x *HopMessage) ProtoReflect() protoreflect.Message {
 | 
						|
	mi := &file_pb_circuit_proto_msgTypes[0]
 | 
						|
	if protoimpl.UnsafeEnabled && x != nil {
 | 
						|
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
						|
		if ms.LoadMessageInfo() == nil {
 | 
						|
			ms.StoreMessageInfo(mi)
 | 
						|
		}
 | 
						|
		return ms
 | 
						|
	}
 | 
						|
	return mi.MessageOf(x)
 | 
						|
}
 | 
						|
 | 
						|
// Deprecated: Use HopMessage.ProtoReflect.Descriptor instead.
 | 
						|
func (*HopMessage) Descriptor() ([]byte, []int) {
 | 
						|
	return file_pb_circuit_proto_rawDescGZIP(), []int{0}
 | 
						|
}
 | 
						|
 | 
						|
func (x *HopMessage) GetType() HopMessage_Type {
 | 
						|
	if x != nil && x.Type != nil {
 | 
						|
		return *x.Type
 | 
						|
	}
 | 
						|
	return HopMessage_RESERVE
 | 
						|
}
 | 
						|
 | 
						|
func (x *HopMessage) GetPeer() *Peer {
 | 
						|
	if x != nil {
 | 
						|
		return x.Peer
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (x *HopMessage) GetReservation() *Reservation {
 | 
						|
	if x != nil {
 | 
						|
		return x.Reservation
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (x *HopMessage) GetLimit() *Limit {
 | 
						|
	if x != nil {
 | 
						|
		return x.Limit
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (x *HopMessage) GetStatus() Status {
 | 
						|
	if x != nil && x.Status != nil {
 | 
						|
		return *x.Status
 | 
						|
	}
 | 
						|
	return Status_UNUSED
 | 
						|
}
 | 
						|
 | 
						|
type StopMessage struct {
 | 
						|
	state         protoimpl.MessageState
 | 
						|
	sizeCache     protoimpl.SizeCache
 | 
						|
	unknownFields protoimpl.UnknownFields
 | 
						|
 | 
						|
	// This field is marked optional for backwards compatibility with proto2.
 | 
						|
	// Users should make sure to always set this.
 | 
						|
	Type   *StopMessage_Type `protobuf:"varint,1,opt,name=type,proto3,enum=circuit.pb.StopMessage_Type,oneof" json:"type,omitempty"`
 | 
						|
	Peer   *Peer             `protobuf:"bytes,2,opt,name=peer,proto3,oneof" json:"peer,omitempty"`
 | 
						|
	Limit  *Limit            `protobuf:"bytes,3,opt,name=limit,proto3,oneof" json:"limit,omitempty"`
 | 
						|
	Status *Status           `protobuf:"varint,4,opt,name=status,proto3,enum=circuit.pb.Status,oneof" json:"status,omitempty"`
 | 
						|
}
 | 
						|
 | 
						|
func (x *StopMessage) Reset() {
 | 
						|
	*x = StopMessage{}
 | 
						|
	if protoimpl.UnsafeEnabled {
 | 
						|
		mi := &file_pb_circuit_proto_msgTypes[1]
 | 
						|
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
						|
		ms.StoreMessageInfo(mi)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (x *StopMessage) String() string {
 | 
						|
	return protoimpl.X.MessageStringOf(x)
 | 
						|
}
 | 
						|
 | 
						|
func (*StopMessage) ProtoMessage() {}
 | 
						|
 | 
						|
func (x *StopMessage) ProtoReflect() protoreflect.Message {
 | 
						|
	mi := &file_pb_circuit_proto_msgTypes[1]
 | 
						|
	if protoimpl.UnsafeEnabled && x != nil {
 | 
						|
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
						|
		if ms.LoadMessageInfo() == nil {
 | 
						|
			ms.StoreMessageInfo(mi)
 | 
						|
		}
 | 
						|
		return ms
 | 
						|
	}
 | 
						|
	return mi.MessageOf(x)
 | 
						|
}
 | 
						|
 | 
						|
// Deprecated: Use StopMessage.ProtoReflect.Descriptor instead.
 | 
						|
func (*StopMessage) Descriptor() ([]byte, []int) {
 | 
						|
	return file_pb_circuit_proto_rawDescGZIP(), []int{1}
 | 
						|
}
 | 
						|
 | 
						|
func (x *StopMessage) GetType() StopMessage_Type {
 | 
						|
	if x != nil && x.Type != nil {
 | 
						|
		return *x.Type
 | 
						|
	}
 | 
						|
	return StopMessage_CONNECT
 | 
						|
}
 | 
						|
 | 
						|
func (x *StopMessage) GetPeer() *Peer {
 | 
						|
	if x != nil {
 | 
						|
		return x.Peer
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (x *StopMessage) GetLimit() *Limit {
 | 
						|
	if x != nil {
 | 
						|
		return x.Limit
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (x *StopMessage) GetStatus() Status {
 | 
						|
	if x != nil && x.Status != nil {
 | 
						|
		return *x.Status
 | 
						|
	}
 | 
						|
	return Status_UNUSED
 | 
						|
}
 | 
						|
 | 
						|
type Peer struct {
 | 
						|
	state         protoimpl.MessageState
 | 
						|
	sizeCache     protoimpl.SizeCache
 | 
						|
	unknownFields protoimpl.UnknownFields
 | 
						|
 | 
						|
	// This field is marked optional for backwards compatibility with proto2.
 | 
						|
	// Users should make sure to always set this.
 | 
						|
	Id    []byte   `protobuf:"bytes,1,opt,name=id,proto3,oneof" json:"id,omitempty"`
 | 
						|
	Addrs [][]byte `protobuf:"bytes,2,rep,name=addrs,proto3" json:"addrs,omitempty"`
 | 
						|
}
 | 
						|
 | 
						|
func (x *Peer) Reset() {
 | 
						|
	*x = Peer{}
 | 
						|
	if protoimpl.UnsafeEnabled {
 | 
						|
		mi := &file_pb_circuit_proto_msgTypes[2]
 | 
						|
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
						|
		ms.StoreMessageInfo(mi)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (x *Peer) String() string {
 | 
						|
	return protoimpl.X.MessageStringOf(x)
 | 
						|
}
 | 
						|
 | 
						|
func (*Peer) ProtoMessage() {}
 | 
						|
 | 
						|
func (x *Peer) ProtoReflect() protoreflect.Message {
 | 
						|
	mi := &file_pb_circuit_proto_msgTypes[2]
 | 
						|
	if protoimpl.UnsafeEnabled && x != nil {
 | 
						|
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
						|
		if ms.LoadMessageInfo() == nil {
 | 
						|
			ms.StoreMessageInfo(mi)
 | 
						|
		}
 | 
						|
		return ms
 | 
						|
	}
 | 
						|
	return mi.MessageOf(x)
 | 
						|
}
 | 
						|
 | 
						|
// Deprecated: Use Peer.ProtoReflect.Descriptor instead.
 | 
						|
func (*Peer) Descriptor() ([]byte, []int) {
 | 
						|
	return file_pb_circuit_proto_rawDescGZIP(), []int{2}
 | 
						|
}
 | 
						|
 | 
						|
func (x *Peer) GetId() []byte {
 | 
						|
	if x != nil {
 | 
						|
		return x.Id
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (x *Peer) GetAddrs() [][]byte {
 | 
						|
	if x != nil {
 | 
						|
		return x.Addrs
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
type Reservation struct {
 | 
						|
	state         protoimpl.MessageState
 | 
						|
	sizeCache     protoimpl.SizeCache
 | 
						|
	unknownFields protoimpl.UnknownFields
 | 
						|
 | 
						|
	// This field is marked optional for backwards compatibility with proto2.
 | 
						|
	// Users should make sure to always set this.
 | 
						|
	Expire  *uint64  `protobuf:"varint,1,opt,name=expire,proto3,oneof" json:"expire,omitempty"`  // Unix expiration time (UTC)
 | 
						|
	Addrs   [][]byte `protobuf:"bytes,2,rep,name=addrs,proto3" json:"addrs,omitempty"`           // relay addrs for reserving peer
 | 
						|
	Voucher []byte   `protobuf:"bytes,3,opt,name=voucher,proto3,oneof" json:"voucher,omitempty"` // reservation voucher
 | 
						|
}
 | 
						|
 | 
						|
func (x *Reservation) Reset() {
 | 
						|
	*x = Reservation{}
 | 
						|
	if protoimpl.UnsafeEnabled {
 | 
						|
		mi := &file_pb_circuit_proto_msgTypes[3]
 | 
						|
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
						|
		ms.StoreMessageInfo(mi)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (x *Reservation) String() string {
 | 
						|
	return protoimpl.X.MessageStringOf(x)
 | 
						|
}
 | 
						|
 | 
						|
func (*Reservation) ProtoMessage() {}
 | 
						|
 | 
						|
func (x *Reservation) ProtoReflect() protoreflect.Message {
 | 
						|
	mi := &file_pb_circuit_proto_msgTypes[3]
 | 
						|
	if protoimpl.UnsafeEnabled && x != nil {
 | 
						|
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
						|
		if ms.LoadMessageInfo() == nil {
 | 
						|
			ms.StoreMessageInfo(mi)
 | 
						|
		}
 | 
						|
		return ms
 | 
						|
	}
 | 
						|
	return mi.MessageOf(x)
 | 
						|
}
 | 
						|
 | 
						|
// Deprecated: Use Reservation.ProtoReflect.Descriptor instead.
 | 
						|
func (*Reservation) Descriptor() ([]byte, []int) {
 | 
						|
	return file_pb_circuit_proto_rawDescGZIP(), []int{3}
 | 
						|
}
 | 
						|
 | 
						|
func (x *Reservation) GetExpire() uint64 {
 | 
						|
	if x != nil && x.Expire != nil {
 | 
						|
		return *x.Expire
 | 
						|
	}
 | 
						|
	return 0
 | 
						|
}
 | 
						|
 | 
						|
func (x *Reservation) GetAddrs() [][]byte {
 | 
						|
	if x != nil {
 | 
						|
		return x.Addrs
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (x *Reservation) GetVoucher() []byte {
 | 
						|
	if x != nil {
 | 
						|
		return x.Voucher
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
type Limit struct {
 | 
						|
	state         protoimpl.MessageState
 | 
						|
	sizeCache     protoimpl.SizeCache
 | 
						|
	unknownFields protoimpl.UnknownFields
 | 
						|
 | 
						|
	Duration *uint32 `protobuf:"varint,1,opt,name=duration,proto3,oneof" json:"duration,omitempty"` // seconds
 | 
						|
	Data     *uint64 `protobuf:"varint,2,opt,name=data,proto3,oneof" json:"data,omitempty"`         // bytes
 | 
						|
}
 | 
						|
 | 
						|
func (x *Limit) Reset() {
 | 
						|
	*x = Limit{}
 | 
						|
	if protoimpl.UnsafeEnabled {
 | 
						|
		mi := &file_pb_circuit_proto_msgTypes[4]
 | 
						|
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
						|
		ms.StoreMessageInfo(mi)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (x *Limit) String() string {
 | 
						|
	return protoimpl.X.MessageStringOf(x)
 | 
						|
}
 | 
						|
 | 
						|
func (*Limit) ProtoMessage() {}
 | 
						|
 | 
						|
func (x *Limit) ProtoReflect() protoreflect.Message {
 | 
						|
	mi := &file_pb_circuit_proto_msgTypes[4]
 | 
						|
	if protoimpl.UnsafeEnabled && x != nil {
 | 
						|
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
						|
		if ms.LoadMessageInfo() == nil {
 | 
						|
			ms.StoreMessageInfo(mi)
 | 
						|
		}
 | 
						|
		return ms
 | 
						|
	}
 | 
						|
	return mi.MessageOf(x)
 | 
						|
}
 | 
						|
 | 
						|
// Deprecated: Use Limit.ProtoReflect.Descriptor instead.
 | 
						|
func (*Limit) Descriptor() ([]byte, []int) {
 | 
						|
	return file_pb_circuit_proto_rawDescGZIP(), []int{4}
 | 
						|
}
 | 
						|
 | 
						|
func (x *Limit) GetDuration() uint32 {
 | 
						|
	if x != nil && x.Duration != nil {
 | 
						|
		return *x.Duration
 | 
						|
	}
 | 
						|
	return 0
 | 
						|
}
 | 
						|
 | 
						|
func (x *Limit) GetData() uint64 {
 | 
						|
	if x != nil && x.Data != nil {
 | 
						|
		return *x.Data
 | 
						|
	}
 | 
						|
	return 0
 | 
						|
}
 | 
						|
 | 
						|
var File_pb_circuit_proto protoreflect.FileDescriptor
 | 
						|
 | 
						|
var file_pb_circuit_proto_rawDesc = []byte{
 | 
						|
	0x0a, 0x10, 0x70, 0x62, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x75, 0x69, 0x74, 0x2e, 0x70, 0x72, 0x6f,
 | 
						|
	0x74, 0x6f, 0x12, 0x0a, 0x63, 0x69, 0x72, 0x63, 0x75, 0x69, 0x74, 0x2e, 0x70, 0x62, 0x22, 0xf1,
 | 
						|
	0x02, 0x0a, 0x0a, 0x48, 0x6f, 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x34, 0x0a,
 | 
						|
	0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1b, 0x2e, 0x63, 0x69,
 | 
						|
	0x72, 0x63, 0x75, 0x69, 0x74, 0x2e, 0x70, 0x62, 0x2e, 0x48, 0x6f, 0x70, 0x4d, 0x65, 0x73, 0x73,
 | 
						|
	0x61, 0x67, 0x65, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x48, 0x00, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
 | 
						|
	0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x04, 0x70, 0x65, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28,
 | 
						|
	0x0b, 0x32, 0x10, 0x2e, 0x63, 0x69, 0x72, 0x63, 0x75, 0x69, 0x74, 0x2e, 0x70, 0x62, 0x2e, 0x50,
 | 
						|
	0x65, 0x65, 0x72, 0x48, 0x01, 0x52, 0x04, 0x70, 0x65, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x3e,
 | 
						|
	0x0a, 0x0b, 0x72, 0x65, 0x73, 0x65, 0x72, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20,
 | 
						|
	0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x63, 0x69, 0x72, 0x63, 0x75, 0x69, 0x74, 0x2e, 0x70, 0x62,
 | 
						|
	0x2e, 0x52, 0x65, 0x73, 0x65, 0x72, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x02, 0x52, 0x0b,
 | 
						|
	0x72, 0x65, 0x73, 0x65, 0x72, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x2c,
 | 
						|
	0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e,
 | 
						|
	0x63, 0x69, 0x72, 0x63, 0x75, 0x69, 0x74, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x6d, 0x69, 0x74,
 | 
						|
	0x48, 0x03, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2f, 0x0a, 0x06,
 | 
						|
	0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x12, 0x2e, 0x63,
 | 
						|
	0x69, 0x72, 0x63, 0x75, 0x69, 0x74, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
 | 
						|
	0x48, 0x04, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01, 0x22, 0x2c, 0x0a,
 | 
						|
	0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x53, 0x45, 0x52, 0x56, 0x45,
 | 
						|
	0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x43, 0x4f, 0x4e, 0x4e, 0x45, 0x43, 0x54, 0x10, 0x01, 0x12,
 | 
						|
	0x0a, 0x0a, 0x06, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x10, 0x02, 0x42, 0x07, 0x0a, 0x05, 0x5f,
 | 
						|
	0x74, 0x79, 0x70, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x70, 0x65, 0x65, 0x72, 0x42, 0x0e, 0x0a,
 | 
						|
	0x0c, 0x5f, 0x72, 0x65, 0x73, 0x65, 0x72, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a,
 | 
						|
	0x06, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x61, 0x74,
 | 
						|
	0x75, 0x73, 0x22, 0x96, 0x02, 0x0a, 0x0b, 0x53, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61,
 | 
						|
	0x67, 0x65, 0x12, 0x35, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e,
 | 
						|
	0x32, 0x1c, 0x2e, 0x63, 0x69, 0x72, 0x63, 0x75, 0x69, 0x74, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x74,
 | 
						|
	0x6f, 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x48, 0x00,
 | 
						|
	0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x04, 0x70, 0x65, 0x65,
 | 
						|
	0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x63, 0x69, 0x72, 0x63, 0x75, 0x69,
 | 
						|
	0x74, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x65, 0x65, 0x72, 0x48, 0x01, 0x52, 0x04, 0x70, 0x65, 0x65,
 | 
						|
	0x72, 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20,
 | 
						|
	0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x63, 0x69, 0x72, 0x63, 0x75, 0x69, 0x74, 0x2e, 0x70, 0x62,
 | 
						|
	0x2e, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x48, 0x02, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x88,
 | 
						|
	0x01, 0x01, 0x12, 0x2f, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01,
 | 
						|
	0x28, 0x0e, 0x32, 0x12, 0x2e, 0x63, 0x69, 0x72, 0x63, 0x75, 0x69, 0x74, 0x2e, 0x70, 0x62, 0x2e,
 | 
						|
	0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x48, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
 | 
						|
	0x88, 0x01, 0x01, 0x22, 0x1f, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x43,
 | 
						|
	0x4f, 0x4e, 0x4e, 0x45, 0x43, 0x54, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x53, 0x54, 0x41, 0x54,
 | 
						|
	0x55, 0x53, 0x10, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x07, 0x0a,
 | 
						|
	0x05, 0x5f, 0x70, 0x65, 0x65, 0x72, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74,
 | 
						|
	0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x38, 0x0a, 0x04, 0x50,
 | 
						|
	0x65, 0x65, 0x72, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x48,
 | 
						|
	0x00, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x64, 0x64, 0x72,
 | 
						|
	0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x05, 0x61, 0x64, 0x64, 0x72, 0x73, 0x42, 0x05,
 | 
						|
	0x0a, 0x03, 0x5f, 0x69, 0x64, 0x22, 0x76, 0x0a, 0x0b, 0x52, 0x65, 0x73, 0x65, 0x72, 0x76, 0x61,
 | 
						|
	0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x06, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x18, 0x01,
 | 
						|
	0x20, 0x01, 0x28, 0x04, 0x48, 0x00, 0x52, 0x06, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x88, 0x01,
 | 
						|
	0x01, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x64, 0x64, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0c,
 | 
						|
	0x52, 0x05, 0x61, 0x64, 0x64, 0x72, 0x73, 0x12, 0x1d, 0x0a, 0x07, 0x76, 0x6f, 0x75, 0x63, 0x68,
 | 
						|
	0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x01, 0x52, 0x07, 0x76, 0x6f, 0x75, 0x63,
 | 
						|
	0x68, 0x65, 0x72, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x65, 0x78, 0x70, 0x69, 0x72,
 | 
						|
	0x65, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x76, 0x6f, 0x75, 0x63, 0x68, 0x65, 0x72, 0x22, 0x57, 0x0a,
 | 
						|
	0x05, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x1f, 0x0a, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69,
 | 
						|
	0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x08, 0x64, 0x75, 0x72, 0x61,
 | 
						|
	0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
 | 
						|
	0x02, 0x20, 0x01, 0x28, 0x04, 0x48, 0x01, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x88, 0x01, 0x01,
 | 
						|
	0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x07, 0x0a,
 | 
						|
	0x05, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x2a, 0xca, 0x01, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75,
 | 
						|
	0x73, 0x12, 0x0a, 0x0a, 0x06, 0x55, 0x4e, 0x55, 0x53, 0x45, 0x44, 0x10, 0x00, 0x12, 0x06, 0x0a,
 | 
						|
	0x02, 0x4f, 0x4b, 0x10, 0x64, 0x12, 0x18, 0x0a, 0x13, 0x52, 0x45, 0x53, 0x45, 0x52, 0x56, 0x41,
 | 
						|
	0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x52, 0x45, 0x46, 0x55, 0x53, 0x45, 0x44, 0x10, 0xc8, 0x01, 0x12,
 | 
						|
	0x1c, 0x0a, 0x17, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4c, 0x49, 0x4d, 0x49,
 | 
						|
	0x54, 0x5f, 0x45, 0x58, 0x43, 0x45, 0x45, 0x44, 0x45, 0x44, 0x10, 0xc9, 0x01, 0x12, 0x16, 0x0a,
 | 
						|
	0x11, 0x50, 0x45, 0x52, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x44, 0x45, 0x4e, 0x49,
 | 
						|
	0x45, 0x44, 0x10, 0xca, 0x01, 0x12, 0x16, 0x0a, 0x11, 0x43, 0x4f, 0x4e, 0x4e, 0x45, 0x43, 0x54,
 | 
						|
	0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10, 0xcb, 0x01, 0x12, 0x13, 0x0a,
 | 
						|
	0x0e, 0x4e, 0x4f, 0x5f, 0x52, 0x45, 0x53, 0x45, 0x52, 0x56, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10,
 | 
						|
	0xcc, 0x01, 0x12, 0x16, 0x0a, 0x11, 0x4d, 0x41, 0x4c, 0x46, 0x4f, 0x52, 0x4d, 0x45, 0x44, 0x5f,
 | 
						|
	0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x10, 0x90, 0x03, 0x12, 0x17, 0x0a, 0x12, 0x55, 0x4e,
 | 
						|
	0x45, 0x58, 0x50, 0x45, 0x43, 0x54, 0x45, 0x44, 0x5f, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45,
 | 
						|
	0x10, 0x91, 0x03, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
 | 
						|
}
 | 
						|
 | 
						|
var (
 | 
						|
	file_pb_circuit_proto_rawDescOnce sync.Once
 | 
						|
	file_pb_circuit_proto_rawDescData = file_pb_circuit_proto_rawDesc
 | 
						|
)
 | 
						|
 | 
						|
func file_pb_circuit_proto_rawDescGZIP() []byte {
 | 
						|
	file_pb_circuit_proto_rawDescOnce.Do(func() {
 | 
						|
		file_pb_circuit_proto_rawDescData = protoimpl.X.CompressGZIP(file_pb_circuit_proto_rawDescData)
 | 
						|
	})
 | 
						|
	return file_pb_circuit_proto_rawDescData
 | 
						|
}
 | 
						|
 | 
						|
var file_pb_circuit_proto_enumTypes = make([]protoimpl.EnumInfo, 3)
 | 
						|
var file_pb_circuit_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
 | 
						|
var file_pb_circuit_proto_goTypes = []interface{}{
 | 
						|
	(Status)(0),           // 0: circuit.pb.Status
 | 
						|
	(HopMessage_Type)(0),  // 1: circuit.pb.HopMessage.Type
 | 
						|
	(StopMessage_Type)(0), // 2: circuit.pb.StopMessage.Type
 | 
						|
	(*HopMessage)(nil),    // 3: circuit.pb.HopMessage
 | 
						|
	(*StopMessage)(nil),   // 4: circuit.pb.StopMessage
 | 
						|
	(*Peer)(nil),          // 5: circuit.pb.Peer
 | 
						|
	(*Reservation)(nil),   // 6: circuit.pb.Reservation
 | 
						|
	(*Limit)(nil),         // 7: circuit.pb.Limit
 | 
						|
}
 | 
						|
var file_pb_circuit_proto_depIdxs = []int32{
 | 
						|
	1, // 0: circuit.pb.HopMessage.type:type_name -> circuit.pb.HopMessage.Type
 | 
						|
	5, // 1: circuit.pb.HopMessage.peer:type_name -> circuit.pb.Peer
 | 
						|
	6, // 2: circuit.pb.HopMessage.reservation:type_name -> circuit.pb.Reservation
 | 
						|
	7, // 3: circuit.pb.HopMessage.limit:type_name -> circuit.pb.Limit
 | 
						|
	0, // 4: circuit.pb.HopMessage.status:type_name -> circuit.pb.Status
 | 
						|
	2, // 5: circuit.pb.StopMessage.type:type_name -> circuit.pb.StopMessage.Type
 | 
						|
	5, // 6: circuit.pb.StopMessage.peer:type_name -> circuit.pb.Peer
 | 
						|
	7, // 7: circuit.pb.StopMessage.limit:type_name -> circuit.pb.Limit
 | 
						|
	0, // 8: circuit.pb.StopMessage.status:type_name -> circuit.pb.Status
 | 
						|
	9, // [9:9] is the sub-list for method output_type
 | 
						|
	9, // [9:9] is the sub-list for method input_type
 | 
						|
	9, // [9:9] is the sub-list for extension type_name
 | 
						|
	9, // [9:9] is the sub-list for extension extendee
 | 
						|
	0, // [0:9] is the sub-list for field type_name
 | 
						|
}
 | 
						|
 | 
						|
func init() { file_pb_circuit_proto_init() }
 | 
						|
func file_pb_circuit_proto_init() {
 | 
						|
	if File_pb_circuit_proto != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	if !protoimpl.UnsafeEnabled {
 | 
						|
		file_pb_circuit_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
 | 
						|
			switch v := v.(*HopMessage); i {
 | 
						|
			case 0:
 | 
						|
				return &v.state
 | 
						|
			case 1:
 | 
						|
				return &v.sizeCache
 | 
						|
			case 2:
 | 
						|
				return &v.unknownFields
 | 
						|
			default:
 | 
						|
				return nil
 | 
						|
			}
 | 
						|
		}
 | 
						|
		file_pb_circuit_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
 | 
						|
			switch v := v.(*StopMessage); i {
 | 
						|
			case 0:
 | 
						|
				return &v.state
 | 
						|
			case 1:
 | 
						|
				return &v.sizeCache
 | 
						|
			case 2:
 | 
						|
				return &v.unknownFields
 | 
						|
			default:
 | 
						|
				return nil
 | 
						|
			}
 | 
						|
		}
 | 
						|
		file_pb_circuit_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
 | 
						|
			switch v := v.(*Peer); i {
 | 
						|
			case 0:
 | 
						|
				return &v.state
 | 
						|
			case 1:
 | 
						|
				return &v.sizeCache
 | 
						|
			case 2:
 | 
						|
				return &v.unknownFields
 | 
						|
			default:
 | 
						|
				return nil
 | 
						|
			}
 | 
						|
		}
 | 
						|
		file_pb_circuit_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
 | 
						|
			switch v := v.(*Reservation); i {
 | 
						|
			case 0:
 | 
						|
				return &v.state
 | 
						|
			case 1:
 | 
						|
				return &v.sizeCache
 | 
						|
			case 2:
 | 
						|
				return &v.unknownFields
 | 
						|
			default:
 | 
						|
				return nil
 | 
						|
			}
 | 
						|
		}
 | 
						|
		file_pb_circuit_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
 | 
						|
			switch v := v.(*Limit); i {
 | 
						|
			case 0:
 | 
						|
				return &v.state
 | 
						|
			case 1:
 | 
						|
				return &v.sizeCache
 | 
						|
			case 2:
 | 
						|
				return &v.unknownFields
 | 
						|
			default:
 | 
						|
				return nil
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
	file_pb_circuit_proto_msgTypes[0].OneofWrappers = []interface{}{}
 | 
						|
	file_pb_circuit_proto_msgTypes[1].OneofWrappers = []interface{}{}
 | 
						|
	file_pb_circuit_proto_msgTypes[2].OneofWrappers = []interface{}{}
 | 
						|
	file_pb_circuit_proto_msgTypes[3].OneofWrappers = []interface{}{}
 | 
						|
	file_pb_circuit_proto_msgTypes[4].OneofWrappers = []interface{}{}
 | 
						|
	type x struct{}
 | 
						|
	out := protoimpl.TypeBuilder{
 | 
						|
		File: protoimpl.DescBuilder{
 | 
						|
			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
 | 
						|
			RawDescriptor: file_pb_circuit_proto_rawDesc,
 | 
						|
			NumEnums:      3,
 | 
						|
			NumMessages:   5,
 | 
						|
			NumExtensions: 0,
 | 
						|
			NumServices:   0,
 | 
						|
		},
 | 
						|
		GoTypes:           file_pb_circuit_proto_goTypes,
 | 
						|
		DependencyIndexes: file_pb_circuit_proto_depIdxs,
 | 
						|
		EnumInfos:         file_pb_circuit_proto_enumTypes,
 | 
						|
		MessageInfos:      file_pb_circuit_proto_msgTypes,
 | 
						|
	}.Build()
 | 
						|
	File_pb_circuit_proto = out.File
 | 
						|
	file_pb_circuit_proto_rawDesc = nil
 | 
						|
	file_pb_circuit_proto_goTypes = nil
 | 
						|
	file_pb_circuit_proto_depIdxs = nil
 | 
						|
}
 |