2020-08-25 06:11:14 +00:00
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: lib/config/deviceconfiguration.proto
package config
import (
fmt "fmt"
proto "github.com/gogo/protobuf/proto"
github_com_syncthing_syncthing_lib_protocol "github.com/syncthing/syncthing/lib/protocol"
protocol "github.com/syncthing/syncthing/lib/protocol"
_ "github.com/syncthing/syncthing/proto/ext"
2020-10-02 06:07:05 +00:00
io "io"
2020-08-25 06:11:14 +00:00
math "math"
math_bits "math/bits"
)
// 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 . GoGoProtoPackageIsVersion3 // please upgrade the proto package
type DeviceConfiguration struct {
2021-02-04 20:10:41 +00:00
DeviceID github_com_syncthing_syncthing_lib_protocol . DeviceID ` protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3,customtype=github.com/syncthing/syncthing/lib/protocol.DeviceID" json:"deviceID" xml:"id,attr" nodefault:"true" `
2020-08-25 06:11:14 +00:00
Name string ` protobuf:"bytes,2,opt,name=name,proto3" json:"name" xml:"name,attr,omitempty" `
Addresses [ ] string ` protobuf:"bytes,3,rep,name=addresses,proto3" json:"addresses" xml:"address,omitempty" default:"dynamic" `
Compression protocol . Compression ` protobuf:"varint,4,opt,name=compression,proto3,enum=protocol.Compression" json:"compression" xml:"compression,attr" `
2023-06-08 18:59:29 +00:00
CompressionAlgo protocol . MessageCompression ` protobuf:"varint,19,opt,name=compression_algo,json=compressionAlgo,proto3,enum=protocol.MessageCompression" json:"compressionAlgo" xml:"compressionAlgo,attr" `
2020-08-25 06:11:14 +00:00
CertName string ` protobuf:"bytes,5,opt,name=cert_name,json=certName,proto3" json:"certName" xml:"certName,attr,omitempty" `
Introducer bool ` protobuf:"varint,6,opt,name=introducer,proto3" json:"introducer" xml:"introducer,attr" `
SkipIntroductionRemovals bool ` protobuf:"varint,7,opt,name=skip_introduction_removals,json=skipIntroductionRemovals,proto3" json:"skipIntroductionRemovals" xml:"skipIntroductionRemovals,attr" `
2021-02-04 20:10:41 +00:00
IntroducedBy github_com_syncthing_syncthing_lib_protocol . DeviceID ` protobuf:"bytes,8,opt,name=introduced_by,json=introducedBy,proto3,customtype=github.com/syncthing/syncthing/lib/protocol.DeviceID" json:"introducedBy" xml:"introducedBy,attr" nodefault:"true" `
2020-08-25 06:11:14 +00:00
Paused bool ` protobuf:"varint,9,opt,name=paused,proto3" json:"paused" xml:"paused" `
AllowedNetworks [ ] string ` protobuf:"bytes,10,rep,name=allowed_networks,json=allowedNetworks,proto3" json:"allowedNetworks" xml:"allowedNetwork,omitempty" `
AutoAcceptFolders bool ` protobuf:"varint,11,opt,name=auto_accept_folders,json=autoAcceptFolders,proto3" json:"autoAcceptFolders" xml:"autoAcceptFolders" `
MaxSendKbps int ` protobuf:"varint,12,opt,name=max_send_kbps,json=maxSendKbps,proto3,casttype=int" json:"maxSendKbps" xml:"maxSendKbps" `
MaxRecvKbps int ` protobuf:"varint,13,opt,name=max_recv_kbps,json=maxRecvKbps,proto3,casttype=int" json:"maxRecvKbps" xml:"maxRecvKbps" `
IgnoredFolders [ ] ObservedFolder ` protobuf:"bytes,14,rep,name=ignored_folders,json=ignoredFolders,proto3" json:"ignoredFolders" xml:"ignoredFolder" `
2020-12-17 18:54:31 +00:00
DeprecatedPendingFolders [ ] ObservedFolder ` protobuf:"bytes,15,rep,name=pending_folders,json=pendingFolders,proto3" json:"-" xml:"pendingFolder,omitempty" ` // Deprecated: Do not use.
2020-08-25 06:11:14 +00:00
MaxRequestKiB int ` protobuf:"varint,16,opt,name=max_request_kib,json=maxRequestKib,proto3,casttype=int" json:"maxRequestKiB" xml:"maxRequestKiB" `
2020-11-09 14:33:32 +00:00
Untrusted bool ` protobuf:"varint,17,opt,name=untrusted,proto3" json:"untrusted" xml:"untrusted" `
2020-11-10 08:24:11 +00:00
RemoteGUIPort int ` protobuf:"varint,18,opt,name=remote_gui_port,json=remoteGuiPort,proto3,casttype=int" json:"remoteGUIPort" xml:"remoteGUIPort" `
2020-08-25 06:11:14 +00:00
}
func ( m * DeviceConfiguration ) Reset ( ) { * m = DeviceConfiguration { } }
func ( m * DeviceConfiguration ) String ( ) string { return proto . CompactTextString ( m ) }
func ( * DeviceConfiguration ) ProtoMessage ( ) { }
func ( * DeviceConfiguration ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return fileDescriptor_744b782bd13071dd , [ ] int { 0 }
}
func ( m * DeviceConfiguration ) XXX_Unmarshal ( b [ ] byte ) error {
2020-10-02 06:07:05 +00:00
return m . Unmarshal ( b )
2020-08-25 06:11:14 +00:00
}
func ( m * DeviceConfiguration ) XXX_Marshal ( b [ ] byte , deterministic bool ) ( [ ] byte , error ) {
2020-10-02 06:07:05 +00:00
if deterministic {
return xxx_messageInfo_DeviceConfiguration . Marshal ( b , m , deterministic )
} else {
b = b [ : cap ( b ) ]
n , err := m . MarshalToSizedBuffer ( b )
if err != nil {
return nil , err
}
return b [ : n ] , nil
}
2020-08-25 06:11:14 +00:00
}
func ( m * DeviceConfiguration ) XXX_Merge ( src proto . Message ) {
xxx_messageInfo_DeviceConfiguration . Merge ( m , src )
}
func ( m * DeviceConfiguration ) XXX_Size ( ) int {
2020-10-02 06:07:05 +00:00
return m . ProtoSize ( )
2020-08-25 06:11:14 +00:00
}
func ( m * DeviceConfiguration ) XXX_DiscardUnknown ( ) {
xxx_messageInfo_DeviceConfiguration . DiscardUnknown ( m )
}
var xxx_messageInfo_DeviceConfiguration proto . InternalMessageInfo
func init ( ) {
proto . RegisterType ( ( * DeviceConfiguration ) ( nil ) , "config.DeviceConfiguration" )
}
func init ( ) {
proto . RegisterFile ( "lib/config/deviceconfiguration.proto" , fileDescriptor_744b782bd13071dd )
}
var fileDescriptor_744b782bd13071dd = [ ] byte {
2023-06-08 18:59:29 +00:00
// 1073 bytes of a gzipped FileDescriptorProto
2021-02-04 20:10:41 +00:00
0x1f , 0x8b , 0x08 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x02 , 0xff , 0xa4 , 0x55 , 0xbf , 0x6f , 0xdb , 0x46 ,
2023-06-08 18:59:29 +00:00
0x14 , 0x16 , 0xeb , 0xc4 , 0xb6 , 0xce , 0x3f , 0x64 , 0xd3 , 0x8d , 0xc3 , 0x18 , 0x8d , 0x4e , 0x50 , 0x35 ,
0x28 , 0x68 , 0x22 , 0x17 , 0x6e , 0x27 , 0xa3 , 0x2d , 0x10 , 0xc6 , 0x68 , 0x63 , 0x18 , 0x49 , 0x5c , 0x16 ,
0x5d , 0xbc , 0xb0 , 0x14 , 0xef , 0xac , 0x10 , 0x26 , 0x79 , 0x2c , 0x79 , 0x54 , 0x2c , 0xa0 , 0x63 , 0x87 ,
0x76 , 0x2b , 0x0c , 0x74 , 0xea , 0x92 , 0xf6 , 0xdf , 0xe8 , 0xd0 , 0xd5 , 0x9b , 0x35 , 0x16 , 0x1d , 0x0e ,
0x88 , 0xbd , 0x71 , 0xe4 , 0x98 , 0xa9 , 0xb8 , 0x23 , 0x45 , 0x1d , 0x69 , 0x2b , 0x28 , 0xd0 , 0x8d , 0xf7 ,
0x7d , 0xef , 0xbe , 0xef , 0xbd , 0xc7 , 0xc7 , 0x47 , 0xd0 , 0x71 , 0x9d , 0xfe , 0xb6 , 0x4d , 0xfc , 0x63 ,
0x67 , 0xb0 , 0x8d , 0xf0 , 0xd0 , 0xb1 , 0x71 , 0x76 , 0x88 , 0x43 , 0x8b , 0x3a , 0xc4 , 0xef , 0x05 , 0x21 ,
0xa1 , 0x44 , 0x9d , 0xcf , 0xc0 , 0xad , 0x4d , 0x1e , 0x2d , 0x20 , 0x9b , 0xb8 , 0xdb , 0x7d , 0x1c , 0x64 ,
0xfc , 0xd6 , 0x3d , 0x49 , 0x85 , 0xf4 , 0x23 , 0x1c , 0x0e , 0x31 , 0xca , 0xa9 , 0x3a , 0x3e , 0xa5 , 0xd9 ,
0x63 , 0xfb , 0x47 , 0x15 , 0x6c , 0xec , 0x09 , 0x8f , 0x27 , 0xb2 , 0x87 , 0xfa , 0x97 , 0x02 , 0xea , 0x99 ,
0xb7 , 0xe9 , 0x20 , 0x4d , 0x69 , 0x29 , 0xdd , 0x65 , 0xfd , 0x77 , 0xe5 , 0x9c , 0xc1 , 0xda , 0x3f , 0x0c ,
0x7e , 0x3a , 0x70 , 0xe8 , 0xcb , 0xb8 , 0xdf , 0xb3 , 0x89 , 0xb7 , 0x1d , 0x8d , 0x7c , 0x9b , 0xbe , 0x74 ,
0xfc , 0x81 , 0xf4 , 0x24 , 0x67 , 0xd4 , 0xcb , 0xd4 , 0xf7 , 0xf7 , 0x2e , 0x19 , 0x5c , 0x9c , 0x3c , 0x27 ,
0x0c , 0x2e , 0xa2 , 0xfc , 0x39 , 0x65 , 0xb0 , 0x79 , 0xea , 0xb9 , 0xbb , 0x6d , 0x07 , 0x3d , 0xb4 , 0x28 ,
0x0d , 0xdb , 0x2d , 0x9f , 0x20 , 0x7c , 0x6c , 0xc5 , 0x2e , 0xdd , 0x6d , 0xd3 , 0x30 , 0xc6 , 0xed , 0xe4 ,
0xa2 , 0xb3 , 0x90 , 0x93 , 0xe9 , 0x45 , 0xa7 , 0xb8 , 0xf8 , 0xd3 , 0xb8 , 0xa3 , 0x9c , 0x8d , 0x3b , 0x85 ,
0xe8 , 0xeb , 0x71 , 0x47 , 0x31 , 0x26 , 0x2c , 0x52 , 0x0f , 0xc1 , 0x2d , 0xdf , 0xf2 , 0xb0 , 0xf6 , 0x5e ,
0x4b , 0xe9 , 0xd6 , 0xf5 , 0xcf , 0x12 , 0x06 , 0xc5 , 0x39 , 0x65 , 0xf0 , 0x9e , 0xb0 , 0xe3 , 0x07 , 0xa1 ,
0xf9 , 0x90 , 0x78 , 0x0e , 0xc5 , 0x5e , 0x40 , 0x47 , 0xdc , 0x69 , 0xe3 , 0x06 , 0xdc , 0x10 , 0x37 , 0xd5 ,
0x53 , 0x50 , 0xb7 , 0x10 , 0x0a , 0x71 , 0x14 , 0xe1 , 0x48 , 0x9b , 0x6b , 0xcd , 0x75 , 0xeb , 0xfa , 0x51 ,
0xc2 , 0xe0 , 0x14 , 0x4c , 0x19 , 0x7c , 0x20 , 0xb4 , 0x73 , 0x44 , 0x52 , 0x6e , 0x15 , 0x25 , 0xa1 , 0x91 ,
0x6f , 0x79 , 0x8e , 0xcd , 0xbd , 0xd6 , 0xaf , 0xc5 , 0xbd , 0xbd , 0xe8 , 0x2c , 0xe4 , 0x01 , 0xc6 , 0x54 ,
0x57 , 0x1d , 0x82 , 0x25 , 0x9b , 0x78 , 0x01 , 0x3f , 0x39 , 0xc4 , 0xd7 , 0x6e , 0xb5 , 0x94 , 0xee , 0xea ,
0xce , 0x9d , 0x5e , 0xd1 , 0xe3 , 0x27 , 0x53 , 0x52 , 0xff , 0x3c , 0x61 , 0x50 , 0x8e , 0x4e , 0x19 , 0xdc ,
0x14 , 0x49 , 0x49 , 0x58 , 0xd6 , 0xe8 , 0xe4 , 0xa2 , 0xb3 , 0x56 , 0x05 , 0x0d , 0xf9 , 0xaa , 0x7a , 0xa6 ,
0x00 , 0x39 , 0xc2 , 0xb4 , 0xdc , 0x01 , 0xd1 , 0x36 , 0x84 , 0xfb , 0x07 , 0x53 , 0xf7 , 0x67 , 0x38 , 0x8a ,
0xac , 0x01 , 0x96 , 0x93 , 0xd8 , 0x4f , 0x18 , 0x6c , 0x48 , 0x37 , 0x1f , 0xbb , 0x03 , 0x92 , 0x32 , 0xb8 ,
0x55 , 0x4d , 0x84 , 0xe3 , 0x45 , 0x32 , 0xef , 0xdf , 0x44 , 0x18 , 0x55 , 0x19 , 0x15 , 0x83 , 0xba , 0x8d ,
0x43 , 0x6a , 0x8a , 0xb7 , 0x7b , 0x5b , 0xbc , 0xdd , 0xa7 , 0x7c , 0xa0 , 0x38 , 0xf8 , 0x3c , 0x7b , 0xc3 ,
0xf7 , 0x33 , 0x9f , 0x1c , 0xb8 , 0xe1 , 0x2d , 0xdf , 0x9d , 0xc1 , 0x19 , 0x85 , 0x8a , 0x7a , 0x04 , 0x80 ,
0xe3 , 0xd3 , 0x90 , 0xa0 , 0xd8 , 0xc6 , 0xa1 , 0x36 , 0xdf , 0x52 , 0xba , 0x8b , 0xfa , 0x6e , 0xc2 , 0xa0 ,
0x84 , 0xa6 , 0x0c , 0xde , 0xc9 , 0x46 , 0xb7 , 0x80 , 0x8a , 0x62 , 0x1a , 0x15 , 0xcc , 0x90 , 0xee , 0xa9 ,
0x7f , 0x28 , 0x60 , 0x2b , 0x3a , 0x71 , 0x02 , 0x73 , 0x82 , 0xf1 , 0x6f , 0xce , 0x0c , 0xb1 , 0x47 , 0x86 ,
0x96 , 0x1b , 0x69 , 0x0b , 0xc2 , 0x0c , 0x25 , 0x0c , 0x6a , 0x3c , 0x6a , 0x5f , 0x0a , 0x32 , 0xf2 , 0x98 ,
0x94 , 0xc1 , 0x0f , 0x85 , 0xf5 , 0xac , 0x80 , 0x22 , 0x91 , 0xfb , 0xef , 0x8c , 0x30 , 0x66 , 0x3a , 0xa8 ,
0x7f , 0x2a , 0x60 , 0xa5 , 0xc8 , 0x19 , 0x99 , 0xfd , 0x91 , 0xb6 , 0x28 , 0xd6 , 0xc0 , 0xaf , 0xff , 0x6b ,
0x0d , 0x24 , 0x0c , 0x2e , 0x4f , 0x55 , 0xf5 , 0x51 , 0xca , 0x60 , 0xb7 , 0xdc , 0x43 , 0xa4 , 0x8f , 0x66 ,
0x2f , 0x82 , 0xf5 , 0x6b , 0x61 , 0x7c , 0x0d , 0x88 , 0x4f , 0xbf , 0x24 , 0xab , 0xee , 0x80 , 0xf9 , 0xc0 ,
0x8a , 0x23 , 0x8c , 0xb4 , 0xba , 0xe8 , 0xe6 , 0x56 , 0xc2 , 0x60 , 0x8e , 0xa4 , 0x0c , 0x2e , 0x0b , 0xcb ,
0xec , 0xd8 , 0x36 , 0x72 , 0x5c , 0xfd , 0x01 , 0xac , 0x59 , 0xae , 0x4b , 0x5e , 0x61 , 0x64 , 0xfa , 0x98 ,
0xbe , 0x22 , 0xe1 , 0x49 , 0xa4 , 0x01 , 0xf1 , 0x9d , 0x7f , 0xcd , 0xe7 , 0x39 , 0xe7 , 0x9e , 0xe7 , 0x54 ,
0xb1 , 0xb8 , 0xca , 0x78 , 0x79 , 0xd0 , 0xb4 , 0x59 , 0xa4 , 0x51 , 0x95 , 0x53 , 0xbf , 0x03 , 0x1b , 0x56 ,
0x4c , 0x89 , 0x69 , 0xd9 , 0x36 , 0x0e , 0xa8 , 0x79 , 0x4c , 0x5c , 0x84 , 0xc3 , 0x48 , 0x5b , 0x12 , 0xe9 ,
0x7f , 0x9c , 0x30 , 0xb8 , 0xce , 0xe9 , 0xc7 , 0x82 , 0xfd , 0x32 , 0x23 , 0x53 , 0x06 , 0xef , 0x66 , 0x29 ,
0x54 , 0x99 , 0xb6 , 0x71 , 0x3d , 0x5a , 0x7d , 0x01 , 0x56 , 0x3c , 0xeb , 0xd4 , 0x8c , 0xb0 , 0x8f , 0xcc ,
0x93 , 0x7e , 0x10 , 0x69 , 0xcb , 0x2d , 0xa5 , 0x7b , 0x5b , 0xff , 0x88 , 0x6f , 0x0c , 0xcf , 0x3a , 0xfd ,
0x06 , 0xfb , 0xe8 , 0xa0 , 0x1f , 0x70 , 0xd5 , 0x75 , 0xa1 , 0x2a , 0x61 , 0xed , 0xb7 , 0x0c , 0xce , 0x39 ,
0x3e , 0x35 , 0xe4 , 0xc0 , 0x89 , 0x60 , 0x88 , 0xed , 0x61 , 0x26 , 0xb8 , 0x52 , 0x12 , 0x34 , 0xb0 , 0x3d ,
0xac , 0x0a , 0x4e , 0xb0 , 0x92 , 0xe0 , 0x04 , 0x54 , 0x7d , 0xd0 , 0x70 , 0x06 , 0x3e , 0x09 , 0x31 , 0x2a ,
0xea , 0x5f , 0x6d , 0xcd , 0x75 , 0x97 , 0x76 , 0x36 , 0x7b , 0xd9 , 0xaf , 0xac , 0xf7 , 0x22 , 0xff , 0x95 ,
0x65 , 0x35 , 0xe9 , 0x8f , 0xf8 , 0x2c , 0x26 , 0x0c , 0xae , 0xe6 , 0xd7 , 0xa6 , 0x8d , 0xd9 , 0xc8 , 0xa6 ,
0x4a , 0x86 , 0xdb , 0x46 , 0x25 , 0x4c , 0xfd , 0x59 , 0x01 , 0x8d , 0x00 , 0xfb , 0xc8 , 0xf1 , 0x07 , 0x85 ,
0x61 , 0xe3 , 0x9d , 0x86 , 0x4f , 0xb9 , 0xe1 , 0x25 , 0x83 , 0xda , 0x1e , 0x0e , 0x42 , 0x6c , 0x5b , 0x14 ,
0xa3 , 0xc3 , 0x4c , 0x20 , 0xd7 , 0x4c , 0x18 , 0x54 , 0x1e , 0x15 , 0x3b , 0x28 , 0x90 , 0x39 , 0x69 , 0x34 ,
0x34 , 0xc5 , 0x58 , 0x2d , 0x71 , 0x91 , 0xfa , 0x9b , 0x02 , 0x1a , 0x59 , 0x37 , 0xbf , 0x8f , 0x71 , 0x44 ,
0xcd , 0x13 , 0xa7 , 0xaf , 0xad , 0x89 , 0x7e , 0x46 , 0x97 , 0x0c , 0xae , 0x3c , 0xe3 , 0x6d , 0x12 , 0xcc ,
0x81 , 0xa3 , 0x27 , 0x0c , 0xae , 0x78 , 0x32 , 0x50 , 0x14 , 0x5c , 0x42 , 0x27 , 0x4d , 0x4e , 0x2e , 0x3a ,
0x95 , 0xf0 , 0x2a , 0x70 , 0x36 , 0xee , 0x94 , 0x1d , 0x8c , 0x12 , 0xdf , 0x57 , 0xbf , 0x00 , 0xf5 , 0xd8 ,
0xa7 , 0x61 , 0x1c , 0x51 , 0x8c , 0xb4 , 0x75 , 0x31 , 0x93 , 0x2d , 0xfe , 0xf3 , 0x2b , 0xc0 , 0x94 , 0xc1 ,
0x86 , 0xc8 , 0xa0 , 0x40 , 0xda , 0xc6 , 0x94 , 0x15 , 0xd5 , 0xf1 , 0x05 , 0x47 , 0xb1 , 0x39 , 0x88 , 0x1d ,
0x33 , 0x20 , 0x21 , 0xd5 , 0xd4 , 0x69 , 0x75 , 0x86 , 0xa0 , 0xbe , 0xfa , 0x76 , 0xff , 0x90 , 0x84 , 0x94 ,
0x57 , 0x17 , 0xca , 0x40 , 0x51 , 0x5d , 0x09 , 0x95 , 0xab , 0x2b , 0x87 , 0x57 , 0x01 , 0x5e , 0x5d , 0xc9 ,
0xc1 , 0x98 , 0xf0 , 0xb1 , 0xc3 , 0x8f , 0xfa , 0xc1 , 0xf9 , 0x9b , 0x66 , 0x6d , 0xfc , 0xa6 , 0x59 , 0x3b ,
0xbf , 0x6c , 0x2a , 0xe3 , 0xcb , 0xa6 , 0xf2 , 0xcb , 0x55 , 0xb3 , 0xf6 , 0xfa , 0xaa , 0xa9 , 0x8c , 0xaf ,
0x9a , 0xb5 , 0xbf , 0xaf , 0x9a , 0xb5 , 0xa3 , 0x07 , 0xff , 0x61 , 0xd9 , 0x65 , 0x13 , 0xd3 , 0x9f , 0x17 ,
0x4b , 0xef , 0x93 , 0x7f , 0x03 , 0x00 , 0x00 , 0xff , 0xff , 0x60 , 0x13 , 0xd0 , 0xc1 , 0xc8 , 0x09 , 0x00 ,
0x00 ,
2020-10-02 06:07:05 +00:00
}
func ( m * DeviceConfiguration ) Marshal ( ) ( dAtA [ ] byte , err error ) {
size := m . ProtoSize ( )
dAtA = make ( [ ] byte , size )
n , err := m . MarshalToSizedBuffer ( dAtA [ : size ] )
if err != nil {
return nil , err
}
return dAtA [ : n ] , nil
2020-08-25 06:11:14 +00:00
}
2020-10-02 06:07:05 +00:00
func ( m * DeviceConfiguration ) MarshalTo ( dAtA [ ] byte ) ( int , error ) {
size := m . ProtoSize ( )
return m . MarshalToSizedBuffer ( dAtA [ : size ] )
}
func ( m * DeviceConfiguration ) MarshalToSizedBuffer ( dAtA [ ] byte ) ( int , error ) {
i := len ( dAtA )
_ = i
var l int
_ = l
2023-06-08 18:59:29 +00:00
if m . CompressionAlgo != 0 {
i = encodeVarintDeviceconfiguration ( dAtA , i , uint64 ( m . CompressionAlgo ) )
i --
dAtA [ i ] = 0x1
i --
dAtA [ i ] = 0x98
}
2020-11-10 08:24:11 +00:00
if m . RemoteGUIPort != 0 {
i = encodeVarintDeviceconfiguration ( dAtA , i , uint64 ( m . RemoteGUIPort ) )
i --
dAtA [ i ] = 0x1
i --
dAtA [ i ] = 0x90
}
2020-11-09 14:33:32 +00:00
if m . Untrusted {
i --
if m . Untrusted {
dAtA [ i ] = 1
} else {
dAtA [ i ] = 0
}
i --
dAtA [ i ] = 0x1
i --
dAtA [ i ] = 0x88
}
2020-10-02 06:07:05 +00:00
if m . MaxRequestKiB != 0 {
i = encodeVarintDeviceconfiguration ( dAtA , i , uint64 ( m . MaxRequestKiB ) )
i --
dAtA [ i ] = 0x1
i --
dAtA [ i ] = 0x80
}
2020-12-17 18:54:31 +00:00
if len ( m . DeprecatedPendingFolders ) > 0 {
for iNdEx := len ( m . DeprecatedPendingFolders ) - 1 ; iNdEx >= 0 ; iNdEx -- {
2020-10-02 06:07:05 +00:00
{
2020-12-17 18:54:31 +00:00
size , err := m . DeprecatedPendingFolders [ iNdEx ] . MarshalToSizedBuffer ( dAtA [ : i ] )
2020-10-02 06:07:05 +00:00
if err != nil {
return 0 , err
}
i -= size
i = encodeVarintDeviceconfiguration ( dAtA , i , uint64 ( size ) )
}
i --
dAtA [ i ] = 0x7a
}
}
if len ( m . IgnoredFolders ) > 0 {
for iNdEx := len ( m . IgnoredFolders ) - 1 ; iNdEx >= 0 ; iNdEx -- {
{
size , err := m . IgnoredFolders [ iNdEx ] . MarshalToSizedBuffer ( dAtA [ : i ] )
if err != nil {
return 0 , err
}
i -= size
i = encodeVarintDeviceconfiguration ( dAtA , i , uint64 ( size ) )
}
i --
dAtA [ i ] = 0x72
}
}
if m . MaxRecvKbps != 0 {
i = encodeVarintDeviceconfiguration ( dAtA , i , uint64 ( m . MaxRecvKbps ) )
i --
dAtA [ i ] = 0x68
}
if m . MaxSendKbps != 0 {
i = encodeVarintDeviceconfiguration ( dAtA , i , uint64 ( m . MaxSendKbps ) )
i --
dAtA [ i ] = 0x60
}
if m . AutoAcceptFolders {
i --
if m . AutoAcceptFolders {
dAtA [ i ] = 1
} else {
dAtA [ i ] = 0
}
i --
dAtA [ i ] = 0x58
}
if len ( m . AllowedNetworks ) > 0 {
for iNdEx := len ( m . AllowedNetworks ) - 1 ; iNdEx >= 0 ; iNdEx -- {
i -= len ( m . AllowedNetworks [ iNdEx ] )
copy ( dAtA [ i : ] , m . AllowedNetworks [ iNdEx ] )
i = encodeVarintDeviceconfiguration ( dAtA , i , uint64 ( len ( m . AllowedNetworks [ iNdEx ] ) ) )
i --
dAtA [ i ] = 0x52
}
}
if m . Paused {
i --
if m . Paused {
dAtA [ i ] = 1
} else {
dAtA [ i ] = 0
}
i --
dAtA [ i ] = 0x48
}
{
size := m . IntroducedBy . ProtoSize ( )
i -= size
if _ , err := m . IntroducedBy . MarshalTo ( dAtA [ i : ] ) ; err != nil {
return 0 , err
}
i = encodeVarintDeviceconfiguration ( dAtA , i , uint64 ( size ) )
}
i --
dAtA [ i ] = 0x42
if m . SkipIntroductionRemovals {
i --
if m . SkipIntroductionRemovals {
dAtA [ i ] = 1
} else {
dAtA [ i ] = 0
}
i --
dAtA [ i ] = 0x38
}
if m . Introducer {
i --
if m . Introducer {
dAtA [ i ] = 1
} else {
dAtA [ i ] = 0
}
i --
dAtA [ i ] = 0x30
}
if len ( m . CertName ) > 0 {
i -= len ( m . CertName )
copy ( dAtA [ i : ] , m . CertName )
i = encodeVarintDeviceconfiguration ( dAtA , i , uint64 ( len ( m . CertName ) ) )
i --
dAtA [ i ] = 0x2a
}
if m . Compression != 0 {
i = encodeVarintDeviceconfiguration ( dAtA , i , uint64 ( m . Compression ) )
i --
dAtA [ i ] = 0x20
}
if len ( m . Addresses ) > 0 {
for iNdEx := len ( m . Addresses ) - 1 ; iNdEx >= 0 ; iNdEx -- {
i -= len ( m . Addresses [ iNdEx ] )
copy ( dAtA [ i : ] , m . Addresses [ iNdEx ] )
i = encodeVarintDeviceconfiguration ( dAtA , i , uint64 ( len ( m . Addresses [ iNdEx ] ) ) )
i --
dAtA [ i ] = 0x1a
}
}
if len ( m . Name ) > 0 {
i -= len ( m . Name )
copy ( dAtA [ i : ] , m . Name )
i = encodeVarintDeviceconfiguration ( dAtA , i , uint64 ( len ( m . Name ) ) )
i --
dAtA [ i ] = 0x12
}
{
size := m . DeviceID . ProtoSize ( )
i -= size
if _ , err := m . DeviceID . MarshalTo ( dAtA [ i : ] ) ; err != nil {
return 0 , err
}
i = encodeVarintDeviceconfiguration ( dAtA , i , uint64 ( size ) )
}
i --
dAtA [ i ] = 0xa
return len ( dAtA ) - i , nil
}
func encodeVarintDeviceconfiguration ( dAtA [ ] byte , offset int , v uint64 ) int {
offset -= sovDeviceconfiguration ( v )
base := offset
for v >= 1 << 7 {
dAtA [ offset ] = uint8 ( v & 0x7f | 0x80 )
v >>= 7
offset ++
}
dAtA [ offset ] = uint8 ( v )
return base
}
2020-08-25 06:11:14 +00:00
func ( m * DeviceConfiguration ) ProtoSize ( ) ( n int ) {
if m == nil {
return 0
}
var l int
_ = l
l = m . DeviceID . ProtoSize ( )
n += 1 + l + sovDeviceconfiguration ( uint64 ( l ) )
l = len ( m . Name )
if l > 0 {
n += 1 + l + sovDeviceconfiguration ( uint64 ( l ) )
}
if len ( m . Addresses ) > 0 {
for _ , s := range m . Addresses {
l = len ( s )
n += 1 + l + sovDeviceconfiguration ( uint64 ( l ) )
}
}
if m . Compression != 0 {
n += 1 + sovDeviceconfiguration ( uint64 ( m . Compression ) )
}
l = len ( m . CertName )
if l > 0 {
n += 1 + l + sovDeviceconfiguration ( uint64 ( l ) )
}
if m . Introducer {
n += 2
}
if m . SkipIntroductionRemovals {
n += 2
}
l = m . IntroducedBy . ProtoSize ( )
n += 1 + l + sovDeviceconfiguration ( uint64 ( l ) )
if m . Paused {
n += 2
}
if len ( m . AllowedNetworks ) > 0 {
for _ , s := range m . AllowedNetworks {
l = len ( s )
n += 1 + l + sovDeviceconfiguration ( uint64 ( l ) )
}
}
if m . AutoAcceptFolders {
n += 2
}
if m . MaxSendKbps != 0 {
n += 1 + sovDeviceconfiguration ( uint64 ( m . MaxSendKbps ) )
}
if m . MaxRecvKbps != 0 {
n += 1 + sovDeviceconfiguration ( uint64 ( m . MaxRecvKbps ) )
}
if len ( m . IgnoredFolders ) > 0 {
for _ , e := range m . IgnoredFolders {
l = e . ProtoSize ( )
n += 1 + l + sovDeviceconfiguration ( uint64 ( l ) )
}
}
2020-12-17 18:54:31 +00:00
if len ( m . DeprecatedPendingFolders ) > 0 {
for _ , e := range m . DeprecatedPendingFolders {
2020-08-25 06:11:14 +00:00
l = e . ProtoSize ( )
n += 1 + l + sovDeviceconfiguration ( uint64 ( l ) )
}
}
if m . MaxRequestKiB != 0 {
n += 2 + sovDeviceconfiguration ( uint64 ( m . MaxRequestKiB ) )
}
2020-11-09 14:33:32 +00:00
if m . Untrusted {
n += 3
}
2020-11-10 08:24:11 +00:00
if m . RemoteGUIPort != 0 {
n += 2 + sovDeviceconfiguration ( uint64 ( m . RemoteGUIPort ) )
}
2023-06-08 18:59:29 +00:00
if m . CompressionAlgo != 0 {
n += 2 + sovDeviceconfiguration ( uint64 ( m . CompressionAlgo ) )
}
2020-08-25 06:11:14 +00:00
return n
}
func sovDeviceconfiguration ( x uint64 ) ( n int ) {
return ( math_bits . Len64 ( x | 1 ) + 6 ) / 7
}
func sozDeviceconfiguration ( x uint64 ) ( n int ) {
return sovDeviceconfiguration ( uint64 ( ( x << 1 ) ^ uint64 ( ( int64 ( x ) >> 63 ) ) ) )
}
2020-10-02 06:07:05 +00:00
func ( m * DeviceConfiguration ) 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 ErrIntOverflowDeviceconfiguration
}
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: DeviceConfiguration: wiretype end group for non-group" )
}
if fieldNum <= 0 {
return fmt . Errorf ( "proto: DeviceConfiguration: illegal tag %d (wire type %d)" , fieldNum , wire )
}
switch fieldNum {
case 1 :
if wireType != 2 {
return fmt . Errorf ( "proto: wrong wireType = %d for field DeviceID" , wireType )
}
var byteLen int
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
byteLen |= int ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
if byteLen < 0 {
return ErrInvalidLengthDeviceconfiguration
}
postIndex := iNdEx + byteLen
if postIndex < 0 {
return ErrInvalidLengthDeviceconfiguration
}
if postIndex > l {
return io . ErrUnexpectedEOF
}
if err := m . DeviceID . Unmarshal ( dAtA [ iNdEx : postIndex ] ) ; err != nil {
return err
}
iNdEx = postIndex
case 2 :
if wireType != 2 {
return fmt . Errorf ( "proto: wrong wireType = %d for field Name" , wireType )
}
var stringLen uint64
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
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 ErrInvalidLengthDeviceconfiguration
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDeviceconfiguration
}
if postIndex > l {
return io . ErrUnexpectedEOF
}
m . Name = string ( dAtA [ iNdEx : postIndex ] )
iNdEx = postIndex
case 3 :
if wireType != 2 {
return fmt . Errorf ( "proto: wrong wireType = %d for field Addresses" , wireType )
}
var stringLen uint64
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
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 ErrInvalidLengthDeviceconfiguration
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDeviceconfiguration
}
if postIndex > l {
return io . ErrUnexpectedEOF
}
m . Addresses = append ( m . Addresses , string ( dAtA [ iNdEx : postIndex ] ) )
iNdEx = postIndex
case 4 :
if wireType != 0 {
return fmt . Errorf ( "proto: wrong wireType = %d for field Compression" , wireType )
}
m . Compression = 0
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
m . Compression |= protocol . Compression ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
case 5 :
if wireType != 2 {
return fmt . Errorf ( "proto: wrong wireType = %d for field CertName" , wireType )
}
var stringLen uint64
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
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 ErrInvalidLengthDeviceconfiguration
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDeviceconfiguration
}
if postIndex > l {
return io . ErrUnexpectedEOF
}
m . CertName = string ( dAtA [ iNdEx : postIndex ] )
iNdEx = postIndex
case 6 :
if wireType != 0 {
return fmt . Errorf ( "proto: wrong wireType = %d for field Introducer" , wireType )
}
var v int
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
v |= int ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
m . Introducer = bool ( v != 0 )
case 7 :
if wireType != 0 {
return fmt . Errorf ( "proto: wrong wireType = %d for field SkipIntroductionRemovals" , wireType )
}
var v int
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
v |= int ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
m . SkipIntroductionRemovals = bool ( v != 0 )
case 8 :
if wireType != 2 {
return fmt . Errorf ( "proto: wrong wireType = %d for field IntroducedBy" , wireType )
}
var byteLen int
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
byteLen |= int ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
if byteLen < 0 {
return ErrInvalidLengthDeviceconfiguration
}
postIndex := iNdEx + byteLen
if postIndex < 0 {
return ErrInvalidLengthDeviceconfiguration
}
if postIndex > l {
return io . ErrUnexpectedEOF
}
if err := m . IntroducedBy . Unmarshal ( dAtA [ iNdEx : postIndex ] ) ; err != nil {
return err
}
iNdEx = postIndex
case 9 :
if wireType != 0 {
return fmt . Errorf ( "proto: wrong wireType = %d for field Paused" , wireType )
}
var v int
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
v |= int ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
m . Paused = bool ( v != 0 )
case 10 :
if wireType != 2 {
return fmt . Errorf ( "proto: wrong wireType = %d for field AllowedNetworks" , wireType )
}
var stringLen uint64
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
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 ErrInvalidLengthDeviceconfiguration
}
postIndex := iNdEx + intStringLen
if postIndex < 0 {
return ErrInvalidLengthDeviceconfiguration
}
if postIndex > l {
return io . ErrUnexpectedEOF
}
m . AllowedNetworks = append ( m . AllowedNetworks , string ( dAtA [ iNdEx : postIndex ] ) )
iNdEx = postIndex
case 11 :
if wireType != 0 {
return fmt . Errorf ( "proto: wrong wireType = %d for field AutoAcceptFolders" , wireType )
}
var v int
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
v |= int ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
m . AutoAcceptFolders = bool ( v != 0 )
case 12 :
if wireType != 0 {
return fmt . Errorf ( "proto: wrong wireType = %d for field MaxSendKbps" , wireType )
}
m . MaxSendKbps = 0
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
m . MaxSendKbps |= int ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
case 13 :
if wireType != 0 {
return fmt . Errorf ( "proto: wrong wireType = %d for field MaxRecvKbps" , wireType )
}
m . MaxRecvKbps = 0
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
m . MaxRecvKbps |= int ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
case 14 :
if wireType != 2 {
return fmt . Errorf ( "proto: wrong wireType = %d for field IgnoredFolders" , wireType )
}
var msglen int
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
msglen |= int ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthDeviceconfiguration
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthDeviceconfiguration
}
if postIndex > l {
return io . ErrUnexpectedEOF
}
m . IgnoredFolders = append ( m . IgnoredFolders , ObservedFolder { } )
if err := m . IgnoredFolders [ len ( m . IgnoredFolders ) - 1 ] . Unmarshal ( dAtA [ iNdEx : postIndex ] ) ; err != nil {
return err
}
iNdEx = postIndex
case 15 :
if wireType != 2 {
2020-12-17 18:54:31 +00:00
return fmt . Errorf ( "proto: wrong wireType = %d for field DeprecatedPendingFolders" , wireType )
2020-10-02 06:07:05 +00:00
}
var msglen int
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
msglen |= int ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthDeviceconfiguration
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthDeviceconfiguration
}
if postIndex > l {
return io . ErrUnexpectedEOF
}
2020-12-17 18:54:31 +00:00
m . DeprecatedPendingFolders = append ( m . DeprecatedPendingFolders , ObservedFolder { } )
if err := m . DeprecatedPendingFolders [ len ( m . DeprecatedPendingFolders ) - 1 ] . Unmarshal ( dAtA [ iNdEx : postIndex ] ) ; err != nil {
2020-10-02 06:07:05 +00:00
return err
}
iNdEx = postIndex
case 16 :
if wireType != 0 {
return fmt . Errorf ( "proto: wrong wireType = %d for field MaxRequestKiB" , wireType )
}
m . MaxRequestKiB = 0
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
m . MaxRequestKiB |= int ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
2020-11-09 14:33:32 +00:00
case 17 :
if wireType != 0 {
return fmt . Errorf ( "proto: wrong wireType = %d for field Untrusted" , wireType )
}
var v int
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
v |= int ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
m . Untrusted = bool ( v != 0 )
2020-11-10 08:24:11 +00:00
case 18 :
if wireType != 0 {
return fmt . Errorf ( "proto: wrong wireType = %d for field RemoteGUIPort" , wireType )
}
m . RemoteGUIPort = 0
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
m . RemoteGUIPort |= int ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
2023-06-08 18:59:29 +00:00
case 19 :
if wireType != 0 {
return fmt . Errorf ( "proto: wrong wireType = %d for field CompressionAlgo" , wireType )
}
m . CompressionAlgo = 0
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
m . CompressionAlgo |= protocol . MessageCompression ( b & 0x7F ) << shift
if b < 0x80 {
break
}
}
2020-10-02 06:07:05 +00:00
default :
iNdEx = preIndex
skippy , err := skipDeviceconfiguration ( dAtA [ iNdEx : ] )
if err != nil {
return err
}
2021-05-19 11:30:20 +00:00
if ( skippy < 0 ) || ( iNdEx + skippy ) < 0 {
2020-10-02 06:07:05 +00:00
return ErrInvalidLengthDeviceconfiguration
}
if ( iNdEx + skippy ) > l {
return io . ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io . ErrUnexpectedEOF
}
return nil
}
func skipDeviceconfiguration ( dAtA [ ] byte ) ( n int , err error ) {
l := len ( dAtA )
iNdEx := 0
depth := 0
for iNdEx < l {
var wire uint64
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return 0 , ErrIntOverflowDeviceconfiguration
}
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 , ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return 0 , io . ErrUnexpectedEOF
}
iNdEx ++
if dAtA [ iNdEx - 1 ] < 0x80 {
break
}
}
case 1 :
iNdEx += 8
case 2 :
var length int
for shift := uint ( 0 ) ; ; shift += 7 {
if shift >= 64 {
return 0 , ErrIntOverflowDeviceconfiguration
}
if iNdEx >= l {
return 0 , io . ErrUnexpectedEOF
}
b := dAtA [ iNdEx ]
iNdEx ++
length |= ( int ( b ) & 0x7F ) << shift
if b < 0x80 {
break
}
}
if length < 0 {
return 0 , ErrInvalidLengthDeviceconfiguration
}
iNdEx += length
case 3 :
depth ++
case 4 :
if depth == 0 {
return 0 , ErrUnexpectedEndOfGroupDeviceconfiguration
}
depth --
case 5 :
iNdEx += 4
default :
return 0 , fmt . Errorf ( "proto: illegal wireType %d" , wireType )
}
if iNdEx < 0 {
return 0 , ErrInvalidLengthDeviceconfiguration
}
if depth == 0 {
return iNdEx , nil
}
}
return 0 , io . ErrUnexpectedEOF
}
var (
ErrInvalidLengthDeviceconfiguration = fmt . Errorf ( "proto: negative length found during unmarshaling" )
ErrIntOverflowDeviceconfiguration = fmt . Errorf ( "proto: integer overflow" )
ErrUnexpectedEndOfGroupDeviceconfiguration = fmt . Errorf ( "proto: unexpected end of group" )
)