Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1 | // Code generated by protoc-gen-go. DO NOT EDIT. |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2 | // source: test/test.proto |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 3 | |
Damien Neil | c31bc2d | 2019-01-04 16:40:51 -0800 | [diff] [blame] | 4 | package test |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 5 | |
| 6 | import ( |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 7 | protoreflect "github.com/golang/protobuf/v2/reflect/protoreflect" |
Joe Tsai | 35ec98f | 2019-03-25 14:41:32 -0700 | [diff] [blame] | 8 | protoregistry "github.com/golang/protobuf/v2/reflect/protoregistry" |
Joe Tsai | 4fddeba | 2019-03-20 18:29:32 -0700 | [diff] [blame] | 9 | protoiface "github.com/golang/protobuf/v2/runtime/protoiface" |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 10 | protoimpl "github.com/golang/protobuf/v2/runtime/protoimpl" |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 11 | sync "sync" |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 12 | ) |
| 13 | |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 14 | const _ = protoimpl.EnforceVersion(protoimpl.Version - 0) |
| 15 | |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 16 | type ForeignEnum int32 |
| 17 | |
| 18 | const ( |
| 19 | ForeignEnum_FOREIGN_FOO ForeignEnum = 4 |
| 20 | ForeignEnum_FOREIGN_BAR ForeignEnum = 5 |
| 21 | ForeignEnum_FOREIGN_BAZ ForeignEnum = 6 |
| 22 | ) |
| 23 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 24 | // Deprecated: Use ForeignEnum.Type.Values instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 25 | var ForeignEnum_name = map[int32]string{ |
| 26 | 4: "FOREIGN_FOO", |
| 27 | 5: "FOREIGN_BAR", |
| 28 | 6: "FOREIGN_BAZ", |
| 29 | } |
| 30 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 31 | // Deprecated: Use ForeignEnum.Type.Values instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 32 | var ForeignEnum_value = map[string]int32{ |
| 33 | "FOREIGN_FOO": 4, |
| 34 | "FOREIGN_BAR": 5, |
| 35 | "FOREIGN_BAZ": 6, |
| 36 | } |
| 37 | |
| 38 | func (x ForeignEnum) Enum() *ForeignEnum { |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 39 | return &x |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | func (x ForeignEnum) String() string { |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 43 | return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x)) |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 44 | } |
| 45 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 46 | func (ForeignEnum) Type() protoreflect.EnumType { |
| 47 | return xxx_File_test_test_proto_enumTypes[0] |
| 48 | } |
| 49 | |
| 50 | func (x ForeignEnum) Number() protoreflect.EnumNumber { |
| 51 | return protoreflect.EnumNumber(x) |
| 52 | } |
| 53 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 54 | // Deprecated: Do not use. |
| 55 | func (x *ForeignEnum) UnmarshalJSON(b []byte) error { |
| 56 | num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b) |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 57 | if err != nil { |
| 58 | return err |
| 59 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 60 | *x = ForeignEnum(num) |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 61 | return nil |
| 62 | } |
| 63 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 64 | // Deprecated: Use ForeignEnum.Type instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 65 | func (ForeignEnum) EnumDescriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 66 | return xxx_File_test_test_proto_rawDescGZIP(), []int{0} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | type TestReservedEnumFields int32 |
| 70 | |
| 71 | const ( |
| 72 | TestReservedEnumFields_RESERVED_ENUM TestReservedEnumFields = 0 |
| 73 | ) |
| 74 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 75 | // Deprecated: Use TestReservedEnumFields.Type.Values instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 76 | var TestReservedEnumFields_name = map[int32]string{ |
| 77 | 0: "RESERVED_ENUM", |
| 78 | } |
| 79 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 80 | // Deprecated: Use TestReservedEnumFields.Type.Values instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 81 | var TestReservedEnumFields_value = map[string]int32{ |
| 82 | "RESERVED_ENUM": 0, |
| 83 | } |
| 84 | |
| 85 | func (x TestReservedEnumFields) Enum() *TestReservedEnumFields { |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 86 | return &x |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | func (x TestReservedEnumFields) String() string { |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 90 | return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x)) |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 91 | } |
| 92 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 93 | func (TestReservedEnumFields) Type() protoreflect.EnumType { |
| 94 | return xxx_File_test_test_proto_enumTypes[1] |
| 95 | } |
| 96 | |
| 97 | func (x TestReservedEnumFields) Number() protoreflect.EnumNumber { |
| 98 | return protoreflect.EnumNumber(x) |
| 99 | } |
| 100 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 101 | // Deprecated: Do not use. |
| 102 | func (x *TestReservedEnumFields) UnmarshalJSON(b []byte) error { |
| 103 | num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b) |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 104 | if err != nil { |
| 105 | return err |
| 106 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 107 | *x = TestReservedEnumFields(num) |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 108 | return nil |
| 109 | } |
| 110 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 111 | // Deprecated: Use TestReservedEnumFields.Type instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 112 | func (TestReservedEnumFields) EnumDescriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 113 | return xxx_File_test_test_proto_rawDescGZIP(), []int{1} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 114 | } |
| 115 | |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 116 | type TestAllTypes_NestedEnum int32 |
| 117 | |
| 118 | const ( |
| 119 | TestAllTypes_FOO TestAllTypes_NestedEnum = 0 |
| 120 | TestAllTypes_BAR TestAllTypes_NestedEnum = 1 |
| 121 | TestAllTypes_BAZ TestAllTypes_NestedEnum = 2 |
| 122 | TestAllTypes_NEG TestAllTypes_NestedEnum = -1 |
| 123 | ) |
| 124 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 125 | // Deprecated: Use TestAllTypes_NestedEnum.Type.Values instead. |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 126 | var TestAllTypes_NestedEnum_name = map[int32]string{ |
| 127 | 0: "FOO", |
| 128 | 1: "BAR", |
| 129 | 2: "BAZ", |
| 130 | -1: "NEG", |
| 131 | } |
| 132 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 133 | // Deprecated: Use TestAllTypes_NestedEnum.Type.Values instead. |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 134 | var TestAllTypes_NestedEnum_value = map[string]int32{ |
| 135 | "FOO": 0, |
| 136 | "BAR": 1, |
| 137 | "BAZ": 2, |
| 138 | "NEG": -1, |
| 139 | } |
| 140 | |
| 141 | func (x TestAllTypes_NestedEnum) Enum() *TestAllTypes_NestedEnum { |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 142 | return &x |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | func (x TestAllTypes_NestedEnum) String() string { |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 146 | return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x)) |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 147 | } |
| 148 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 149 | func (TestAllTypes_NestedEnum) Type() protoreflect.EnumType { |
| 150 | return xxx_File_test_test_proto_enumTypes[2] |
| 151 | } |
| 152 | |
| 153 | func (x TestAllTypes_NestedEnum) Number() protoreflect.EnumNumber { |
| 154 | return protoreflect.EnumNumber(x) |
| 155 | } |
| 156 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 157 | // Deprecated: Do not use. |
| 158 | func (x *TestAllTypes_NestedEnum) UnmarshalJSON(b []byte) error { |
| 159 | num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b) |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 160 | if err != nil { |
| 161 | return err |
| 162 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 163 | *x = TestAllTypes_NestedEnum(num) |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 164 | return nil |
| 165 | } |
| 166 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 167 | // Deprecated: Use TestAllTypes_NestedEnum.Type instead. |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 168 | func (TestAllTypes_NestedEnum) EnumDescriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 169 | return xxx_File_test_test_proto_rawDescGZIP(), []int{0, 0} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 170 | } |
| 171 | |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 172 | type TestDeprecatedMessage_DeprecatedEnum int32 // Deprecated: Do not use. |
| 173 | const ( |
| 174 | TestDeprecatedMessage_DEPRECATED TestDeprecatedMessage_DeprecatedEnum = 0 // Deprecated: Do not use. |
| 175 | ) |
| 176 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 177 | // Deprecated: Use TestDeprecatedMessage_DeprecatedEnum.Type.Values instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 178 | var TestDeprecatedMessage_DeprecatedEnum_name = map[int32]string{ |
| 179 | 0: "DEPRECATED", |
| 180 | } |
| 181 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 182 | // Deprecated: Use TestDeprecatedMessage_DeprecatedEnum.Type.Values instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 183 | var TestDeprecatedMessage_DeprecatedEnum_value = map[string]int32{ |
| 184 | "DEPRECATED": 0, |
| 185 | } |
| 186 | |
| 187 | func (x TestDeprecatedMessage_DeprecatedEnum) Enum() *TestDeprecatedMessage_DeprecatedEnum { |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 188 | return &x |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | func (x TestDeprecatedMessage_DeprecatedEnum) String() string { |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 192 | return protoimpl.X.EnumStringOf(x.Type(), protoreflect.EnumNumber(x)) |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 193 | } |
| 194 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 195 | func (TestDeprecatedMessage_DeprecatedEnum) Type() protoreflect.EnumType { |
| 196 | return xxx_File_test_test_proto_enumTypes[3] |
| 197 | } |
| 198 | |
| 199 | func (x TestDeprecatedMessage_DeprecatedEnum) Number() protoreflect.EnumNumber { |
| 200 | return protoreflect.EnumNumber(x) |
| 201 | } |
| 202 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 203 | // Deprecated: Do not use. |
| 204 | func (x *TestDeprecatedMessage_DeprecatedEnum) UnmarshalJSON(b []byte) error { |
| 205 | num, err := protoimpl.X.UnmarshalJSONEnum(x.Type(), b) |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 206 | if err != nil { |
| 207 | return err |
| 208 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 209 | *x = TestDeprecatedMessage_DeprecatedEnum(num) |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 210 | return nil |
| 211 | } |
| 212 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 213 | // Deprecated: Use TestDeprecatedMessage_DeprecatedEnum.Type instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 214 | func (TestDeprecatedMessage_DeprecatedEnum) EnumDescriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 215 | return xxx_File_test_test_proto_rawDescGZIP(), []int{1, 0} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 216 | } |
| 217 | |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 218 | type TestAllTypes struct { |
| 219 | OptionalInt32 *int32 `protobuf:"varint,1,opt,name=optional_int32,json=optionalInt32" json:"optional_int32,omitempty"` |
| 220 | OptionalInt64 *int64 `protobuf:"varint,2,opt,name=optional_int64,json=optionalInt64" json:"optional_int64,omitempty"` |
| 221 | OptionalUint32 *uint32 `protobuf:"varint,3,opt,name=optional_uint32,json=optionalUint32" json:"optional_uint32,omitempty"` |
| 222 | OptionalUint64 *uint64 `protobuf:"varint,4,opt,name=optional_uint64,json=optionalUint64" json:"optional_uint64,omitempty"` |
| 223 | OptionalSint32 *int32 `protobuf:"zigzag32,5,opt,name=optional_sint32,json=optionalSint32" json:"optional_sint32,omitempty"` |
| 224 | OptionalSint64 *int64 `protobuf:"zigzag64,6,opt,name=optional_sint64,json=optionalSint64" json:"optional_sint64,omitempty"` |
| 225 | OptionalFixed32 *uint32 `protobuf:"fixed32,7,opt,name=optional_fixed32,json=optionalFixed32" json:"optional_fixed32,omitempty"` |
| 226 | OptionalFixed64 *uint64 `protobuf:"fixed64,8,opt,name=optional_fixed64,json=optionalFixed64" json:"optional_fixed64,omitempty"` |
| 227 | OptionalSfixed32 *int32 `protobuf:"fixed32,9,opt,name=optional_sfixed32,json=optionalSfixed32" json:"optional_sfixed32,omitempty"` |
| 228 | OptionalSfixed64 *int64 `protobuf:"fixed64,10,opt,name=optional_sfixed64,json=optionalSfixed64" json:"optional_sfixed64,omitempty"` |
| 229 | OptionalFloat *float32 `protobuf:"fixed32,11,opt,name=optional_float,json=optionalFloat" json:"optional_float,omitempty"` |
| 230 | OptionalDouble *float64 `protobuf:"fixed64,12,opt,name=optional_double,json=optionalDouble" json:"optional_double,omitempty"` |
| 231 | OptionalBool *bool `protobuf:"varint,13,opt,name=optional_bool,json=optionalBool" json:"optional_bool,omitempty"` |
| 232 | OptionalString *string `protobuf:"bytes,14,opt,name=optional_string,json=optionalString" json:"optional_string,omitempty"` |
| 233 | OptionalBytes []byte `protobuf:"bytes,15,opt,name=optional_bytes,json=optionalBytes" json:"optional_bytes,omitempty"` |
| 234 | Optionalgroup *TestAllTypes_OptionalGroup `protobuf:"group,16,opt,name=OptionalGroup,json=optionalgroup" json:"optionalgroup,omitempty"` |
| 235 | OptionalNestedMessage *TestAllTypes_NestedMessage `protobuf:"bytes,18,opt,name=optional_nested_message,json=optionalNestedMessage" json:"optional_nested_message,omitempty"` |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 236 | OptionalForeignMessage *ForeignMessage `protobuf:"bytes,19,opt,name=optional_foreign_message,json=optionalForeignMessage" json:"optional_foreign_message,omitempty"` |
| 237 | OptionalImportMessage *ImportMessage `protobuf:"bytes,20,opt,name=optional_import_message,json=optionalImportMessage" json:"optional_import_message,omitempty"` |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 238 | OptionalNestedEnum *TestAllTypes_NestedEnum `protobuf:"varint,21,opt,name=optional_nested_enum,json=optionalNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum" json:"optional_nested_enum,omitempty"` |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 239 | OptionalForeignEnum *ForeignEnum `protobuf:"varint,22,opt,name=optional_foreign_enum,json=optionalForeignEnum,enum=goproto.proto.test.ForeignEnum" json:"optional_foreign_enum,omitempty"` |
| 240 | OptionalImportEnum *ImportEnum `protobuf:"varint,23,opt,name=optional_import_enum,json=optionalImportEnum,enum=goproto.proto.test.ImportEnum" json:"optional_import_enum,omitempty"` |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 241 | RepeatedInt32 []int32 `protobuf:"varint,31,rep,name=repeated_int32,json=repeatedInt32" json:"repeated_int32,omitempty"` |
| 242 | RepeatedInt64 []int64 `protobuf:"varint,32,rep,name=repeated_int64,json=repeatedInt64" json:"repeated_int64,omitempty"` |
| 243 | RepeatedUint32 []uint32 `protobuf:"varint,33,rep,name=repeated_uint32,json=repeatedUint32" json:"repeated_uint32,omitempty"` |
| 244 | RepeatedUint64 []uint64 `protobuf:"varint,34,rep,name=repeated_uint64,json=repeatedUint64" json:"repeated_uint64,omitempty"` |
| 245 | RepeatedSint32 []int32 `protobuf:"zigzag32,35,rep,name=repeated_sint32,json=repeatedSint32" json:"repeated_sint32,omitempty"` |
| 246 | RepeatedSint64 []int64 `protobuf:"zigzag64,36,rep,name=repeated_sint64,json=repeatedSint64" json:"repeated_sint64,omitempty"` |
| 247 | RepeatedFixed32 []uint32 `protobuf:"fixed32,37,rep,name=repeated_fixed32,json=repeatedFixed32" json:"repeated_fixed32,omitempty"` |
| 248 | RepeatedFixed64 []uint64 `protobuf:"fixed64,38,rep,name=repeated_fixed64,json=repeatedFixed64" json:"repeated_fixed64,omitempty"` |
| 249 | RepeatedSfixed32 []int32 `protobuf:"fixed32,39,rep,name=repeated_sfixed32,json=repeatedSfixed32" json:"repeated_sfixed32,omitempty"` |
| 250 | RepeatedSfixed64 []int64 `protobuf:"fixed64,40,rep,name=repeated_sfixed64,json=repeatedSfixed64" json:"repeated_sfixed64,omitempty"` |
| 251 | RepeatedFloat []float32 `protobuf:"fixed32,41,rep,name=repeated_float,json=repeatedFloat" json:"repeated_float,omitempty"` |
| 252 | RepeatedDouble []float64 `protobuf:"fixed64,42,rep,name=repeated_double,json=repeatedDouble" json:"repeated_double,omitempty"` |
| 253 | RepeatedBool []bool `protobuf:"varint,43,rep,name=repeated_bool,json=repeatedBool" json:"repeated_bool,omitempty"` |
| 254 | RepeatedString []string `protobuf:"bytes,44,rep,name=repeated_string,json=repeatedString" json:"repeated_string,omitempty"` |
| 255 | RepeatedBytes [][]byte `protobuf:"bytes,45,rep,name=repeated_bytes,json=repeatedBytes" json:"repeated_bytes,omitempty"` |
| 256 | Repeatedgroup []*TestAllTypes_RepeatedGroup `protobuf:"group,46,rep,name=RepeatedGroup,json=repeatedgroup" json:"repeatedgroup,omitempty"` |
| 257 | RepeatedNestedMessage []*TestAllTypes_NestedMessage `protobuf:"bytes,48,rep,name=repeated_nested_message,json=repeatedNestedMessage" json:"repeated_nested_message,omitempty"` |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 258 | RepeatedForeignMessage []*ForeignMessage `protobuf:"bytes,49,rep,name=repeated_foreign_message,json=repeatedForeignMessage" json:"repeated_foreign_message,omitempty"` |
| 259 | RepeatedImportmessage []*ImportMessage `protobuf:"bytes,50,rep,name=repeated_importmessage,json=repeatedImportmessage" json:"repeated_importmessage,omitempty"` |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 260 | RepeatedNestedEnum []TestAllTypes_NestedEnum `protobuf:"varint,51,rep,name=repeated_nested_enum,json=repeatedNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum" json:"repeated_nested_enum,omitempty"` |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 261 | RepeatedForeignEnum []ForeignEnum `protobuf:"varint,52,rep,name=repeated_foreign_enum,json=repeatedForeignEnum,enum=goproto.proto.test.ForeignEnum" json:"repeated_foreign_enum,omitempty"` |
| 262 | RepeatedImportenum []ImportEnum `protobuf:"varint,53,rep,name=repeated_importenum,json=repeatedImportenum,enum=goproto.proto.test.ImportEnum" json:"repeated_importenum,omitempty"` |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 263 | MapInt32Int32 map[int32]int32 `protobuf:"bytes,56,rep,name=map_int32_int32,json=mapInt32Int32" json:"map_int32_int32,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` |
| 264 | MapInt64Int64 map[int64]int64 `protobuf:"bytes,57,rep,name=map_int64_int64,json=mapInt64Int64" json:"map_int64_int64,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` |
| 265 | MapUint32Uint32 map[uint32]uint32 `protobuf:"bytes,58,rep,name=map_uint32_uint32,json=mapUint32Uint32" json:"map_uint32_uint32,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` |
| 266 | MapUint64Uint64 map[uint64]uint64 `protobuf:"bytes,59,rep,name=map_uint64_uint64,json=mapUint64Uint64" json:"map_uint64_uint64,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` |
| 267 | MapSint32Sint32 map[int32]int32 `protobuf:"bytes,60,rep,name=map_sint32_sint32,json=mapSint32Sint32" json:"map_sint32_sint32,omitempty" protobuf_key:"zigzag32,1,opt,name=key" protobuf_val:"zigzag32,2,opt,name=value"` |
| 268 | MapSint64Sint64 map[int64]int64 `protobuf:"bytes,61,rep,name=map_sint64_sint64,json=mapSint64Sint64" json:"map_sint64_sint64,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"zigzag64,2,opt,name=value"` |
| 269 | MapFixed32Fixed32 map[uint32]uint32 `protobuf:"bytes,62,rep,name=map_fixed32_fixed32,json=mapFixed32Fixed32" json:"map_fixed32_fixed32,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` |
| 270 | MapFixed64Fixed64 map[uint64]uint64 `protobuf:"bytes,63,rep,name=map_fixed64_fixed64,json=mapFixed64Fixed64" json:"map_fixed64_fixed64,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` |
| 271 | MapSfixed32Sfixed32 map[int32]int32 `protobuf:"bytes,64,rep,name=map_sfixed32_sfixed32,json=mapSfixed32Sfixed32" json:"map_sfixed32_sfixed32,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` |
| 272 | MapSfixed64Sfixed64 map[int64]int64 `protobuf:"bytes,65,rep,name=map_sfixed64_sfixed64,json=mapSfixed64Sfixed64" json:"map_sfixed64_sfixed64,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` |
| 273 | MapInt32Float map[int32]float32 `protobuf:"bytes,66,rep,name=map_int32_float,json=mapInt32Float" json:"map_int32_float,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"` |
| 274 | MapInt32Double map[int32]float64 `protobuf:"bytes,67,rep,name=map_int32_double,json=mapInt32Double" json:"map_int32_double,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"` |
| 275 | MapBoolBool map[bool]bool `protobuf:"bytes,68,rep,name=map_bool_bool,json=mapBoolBool" json:"map_bool_bool,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` |
| 276 | MapStringString map[string]string `protobuf:"bytes,69,rep,name=map_string_string,json=mapStringString" json:"map_string_string,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` |
| 277 | MapStringBytes map[string][]byte `protobuf:"bytes,70,rep,name=map_string_bytes,json=mapStringBytes" json:"map_string_bytes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` |
| 278 | MapStringNestedMessage map[string]*TestAllTypes_NestedMessage `protobuf:"bytes,71,rep,name=map_string_nested_message,json=mapStringNestedMessage" json:"map_string_nested_message,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` |
| 279 | MapStringNestedEnum map[string]TestAllTypes_NestedEnum `protobuf:"bytes,73,rep,name=map_string_nested_enum,json=mapStringNestedEnum" json:"map_string_nested_enum,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=goproto.proto.test.TestAllTypes_NestedEnum"` |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 280 | // Singular with defaults |
| 281 | DefaultInt32 *int32 `protobuf:"varint,81,opt,name=default_int32,json=defaultInt32,def=81" json:"default_int32,omitempty"` |
| 282 | DefaultInt64 *int64 `protobuf:"varint,82,opt,name=default_int64,json=defaultInt64,def=82" json:"default_int64,omitempty"` |
| 283 | DefaultUint32 *uint32 `protobuf:"varint,83,opt,name=default_uint32,json=defaultUint32,def=83" json:"default_uint32,omitempty"` |
| 284 | DefaultUint64 *uint64 `protobuf:"varint,84,opt,name=default_uint64,json=defaultUint64,def=84" json:"default_uint64,omitempty"` |
| 285 | DefaultSint32 *int32 `protobuf:"zigzag32,85,opt,name=default_sint32,json=defaultSint32,def=-85" json:"default_sint32,omitempty"` |
| 286 | DefaultSint64 *int64 `protobuf:"zigzag64,86,opt,name=default_sint64,json=defaultSint64,def=86" json:"default_sint64,omitempty"` |
| 287 | DefaultFixed32 *uint32 `protobuf:"fixed32,87,opt,name=default_fixed32,json=defaultFixed32,def=87" json:"default_fixed32,omitempty"` |
| 288 | DefaultFixed64 *uint64 `protobuf:"fixed64,88,opt,name=default_fixed64,json=defaultFixed64,def=88" json:"default_fixed64,omitempty"` |
| 289 | DefaultSfixed32 *int32 `protobuf:"fixed32,89,opt,name=default_sfixed32,json=defaultSfixed32,def=89" json:"default_sfixed32,omitempty"` |
| 290 | DefaultSfixed64 *int64 `protobuf:"fixed64,80,opt,name=default_sfixed64,json=defaultSfixed64,def=-90" json:"default_sfixed64,omitempty"` |
| 291 | DefaultFloat *float32 `protobuf:"fixed32,91,opt,name=default_float,json=defaultFloat,def=91.5" json:"default_float,omitempty"` |
| 292 | DefaultDouble *float64 `protobuf:"fixed64,92,opt,name=default_double,json=defaultDouble,def=92000" json:"default_double,omitempty"` |
| 293 | DefaultBool *bool `protobuf:"varint,93,opt,name=default_bool,json=defaultBool,def=1" json:"default_bool,omitempty"` |
| 294 | DefaultString *string `protobuf:"bytes,94,opt,name=default_string,json=defaultString,def=hello" json:"default_string,omitempty"` |
| 295 | DefaultBytes []byte `protobuf:"bytes,95,opt,name=default_bytes,json=defaultBytes,def=world" json:"default_bytes,omitempty"` |
| 296 | DefaultNestedEnum *TestAllTypes_NestedEnum `protobuf:"varint,96,opt,name=default_nested_enum,json=defaultNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum,def=1" json:"default_nested_enum,omitempty"` |
| 297 | DefaultForeignEnum *ForeignEnum `protobuf:"varint,97,opt,name=default_foreign_enum,json=defaultForeignEnum,enum=goproto.proto.test.ForeignEnum,def=5" json:"default_foreign_enum,omitempty"` |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 298 | // Types that are valid to be assigned to OneofField: |
| 299 | // *TestAllTypes_OneofUint32 |
| 300 | // *TestAllTypes_OneofNestedMessage |
| 301 | // *TestAllTypes_OneofString |
| 302 | // *TestAllTypes_OneofBytes |
| 303 | // *TestAllTypes_OneofBool |
| 304 | // *TestAllTypes_OneofUint64 |
| 305 | // *TestAllTypes_OneofFloat |
| 306 | // *TestAllTypes_OneofDouble |
| 307 | // *TestAllTypes_OneofEnum |
| 308 | OneofField isTestAllTypes_OneofField `protobuf_oneof:"oneof_field"` |
| 309 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 310 | XXX_unrecognized []byte `json:"-"` |
| 311 | XXX_sizecache int32 `json:"-"` |
| 312 | } |
| 313 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 314 | func (x *TestAllTypes) Reset() { |
| 315 | *x = TestAllTypes{} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 316 | } |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 317 | |
| 318 | func (x *TestAllTypes) String() string { |
| 319 | return protoimpl.X.MessageStringOf(x) |
| 320 | } |
| 321 | |
| 322 | func (*TestAllTypes) ProtoMessage() {} |
| 323 | |
| 324 | func (x *TestAllTypes) ProtoReflect() protoreflect.Message { |
| 325 | return xxx_File_test_test_proto_messageTypes[0].MessageOf(x) |
| 326 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 327 | |
| 328 | // Deprecated: Use TestAllTypes.ProtoReflect.Type instead. |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 329 | func (*TestAllTypes) Descriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 330 | return xxx_File_test_test_proto_rawDescGZIP(), []int{0} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 331 | } |
| 332 | |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 333 | const Default_TestAllTypes_DefaultInt32 int32 = 81 |
| 334 | const Default_TestAllTypes_DefaultInt64 int64 = 82 |
| 335 | const Default_TestAllTypes_DefaultUint32 uint32 = 83 |
| 336 | const Default_TestAllTypes_DefaultUint64 uint64 = 84 |
| 337 | const Default_TestAllTypes_DefaultSint32 int32 = -85 |
| 338 | const Default_TestAllTypes_DefaultSint64 int64 = 86 |
| 339 | const Default_TestAllTypes_DefaultFixed32 uint32 = 87 |
| 340 | const Default_TestAllTypes_DefaultFixed64 uint64 = 88 |
| 341 | const Default_TestAllTypes_DefaultSfixed32 int32 = 89 |
| 342 | const Default_TestAllTypes_DefaultSfixed64 int64 = -90 |
| 343 | const Default_TestAllTypes_DefaultFloat float32 = 91.5 |
| 344 | const Default_TestAllTypes_DefaultDouble float64 = 92000 |
| 345 | const Default_TestAllTypes_DefaultBool bool = true |
| 346 | const Default_TestAllTypes_DefaultString string = "hello" |
| 347 | |
| 348 | var Default_TestAllTypes_DefaultBytes []byte = []byte("world") |
| 349 | |
| 350 | const Default_TestAllTypes_DefaultNestedEnum TestAllTypes_NestedEnum = TestAllTypes_BAR |
| 351 | const Default_TestAllTypes_DefaultForeignEnum ForeignEnum = ForeignEnum_FOREIGN_BAR |
| 352 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 353 | func (x *TestAllTypes) GetOptionalInt32() int32 { |
| 354 | if x != nil && x.OptionalInt32 != nil { |
| 355 | return *x.OptionalInt32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 356 | } |
| 357 | return 0 |
| 358 | } |
| 359 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 360 | func (x *TestAllTypes) GetOptionalInt64() int64 { |
| 361 | if x != nil && x.OptionalInt64 != nil { |
| 362 | return *x.OptionalInt64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 363 | } |
| 364 | return 0 |
| 365 | } |
| 366 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 367 | func (x *TestAllTypes) GetOptionalUint32() uint32 { |
| 368 | if x != nil && x.OptionalUint32 != nil { |
| 369 | return *x.OptionalUint32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 370 | } |
| 371 | return 0 |
| 372 | } |
| 373 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 374 | func (x *TestAllTypes) GetOptionalUint64() uint64 { |
| 375 | if x != nil && x.OptionalUint64 != nil { |
| 376 | return *x.OptionalUint64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 377 | } |
| 378 | return 0 |
| 379 | } |
| 380 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 381 | func (x *TestAllTypes) GetOptionalSint32() int32 { |
| 382 | if x != nil && x.OptionalSint32 != nil { |
| 383 | return *x.OptionalSint32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 384 | } |
| 385 | return 0 |
| 386 | } |
| 387 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 388 | func (x *TestAllTypes) GetOptionalSint64() int64 { |
| 389 | if x != nil && x.OptionalSint64 != nil { |
| 390 | return *x.OptionalSint64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 391 | } |
| 392 | return 0 |
| 393 | } |
| 394 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 395 | func (x *TestAllTypes) GetOptionalFixed32() uint32 { |
| 396 | if x != nil && x.OptionalFixed32 != nil { |
| 397 | return *x.OptionalFixed32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 398 | } |
| 399 | return 0 |
| 400 | } |
| 401 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 402 | func (x *TestAllTypes) GetOptionalFixed64() uint64 { |
| 403 | if x != nil && x.OptionalFixed64 != nil { |
| 404 | return *x.OptionalFixed64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 405 | } |
| 406 | return 0 |
| 407 | } |
| 408 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 409 | func (x *TestAllTypes) GetOptionalSfixed32() int32 { |
| 410 | if x != nil && x.OptionalSfixed32 != nil { |
| 411 | return *x.OptionalSfixed32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 412 | } |
| 413 | return 0 |
| 414 | } |
| 415 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 416 | func (x *TestAllTypes) GetOptionalSfixed64() int64 { |
| 417 | if x != nil && x.OptionalSfixed64 != nil { |
| 418 | return *x.OptionalSfixed64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 419 | } |
| 420 | return 0 |
| 421 | } |
| 422 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 423 | func (x *TestAllTypes) GetOptionalFloat() float32 { |
| 424 | if x != nil && x.OptionalFloat != nil { |
| 425 | return *x.OptionalFloat |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 426 | } |
| 427 | return 0 |
| 428 | } |
| 429 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 430 | func (x *TestAllTypes) GetOptionalDouble() float64 { |
| 431 | if x != nil && x.OptionalDouble != nil { |
| 432 | return *x.OptionalDouble |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 433 | } |
| 434 | return 0 |
| 435 | } |
| 436 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 437 | func (x *TestAllTypes) GetOptionalBool() bool { |
| 438 | if x != nil && x.OptionalBool != nil { |
| 439 | return *x.OptionalBool |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 440 | } |
| 441 | return false |
| 442 | } |
| 443 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 444 | func (x *TestAllTypes) GetOptionalString() string { |
| 445 | if x != nil && x.OptionalString != nil { |
| 446 | return *x.OptionalString |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 447 | } |
| 448 | return "" |
| 449 | } |
| 450 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 451 | func (x *TestAllTypes) GetOptionalBytes() []byte { |
| 452 | if x != nil { |
| 453 | return x.OptionalBytes |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 454 | } |
| 455 | return nil |
| 456 | } |
| 457 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 458 | func (x *TestAllTypes) GetOptionalgroup() *TestAllTypes_OptionalGroup { |
| 459 | if x != nil { |
| 460 | return x.Optionalgroup |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 461 | } |
| 462 | return nil |
| 463 | } |
| 464 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 465 | func (x *TestAllTypes) GetOptionalNestedMessage() *TestAllTypes_NestedMessage { |
| 466 | if x != nil { |
| 467 | return x.OptionalNestedMessage |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 468 | } |
| 469 | return nil |
| 470 | } |
| 471 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 472 | func (x *TestAllTypes) GetOptionalForeignMessage() *ForeignMessage { |
| 473 | if x != nil { |
| 474 | return x.OptionalForeignMessage |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 475 | } |
| 476 | return nil |
| 477 | } |
| 478 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 479 | func (x *TestAllTypes) GetOptionalImportMessage() *ImportMessage { |
| 480 | if x != nil { |
| 481 | return x.OptionalImportMessage |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 482 | } |
| 483 | return nil |
| 484 | } |
| 485 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 486 | func (x *TestAllTypes) GetOptionalNestedEnum() TestAllTypes_NestedEnum { |
| 487 | if x != nil && x.OptionalNestedEnum != nil { |
| 488 | return *x.OptionalNestedEnum |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 489 | } |
| 490 | return TestAllTypes_FOO |
| 491 | } |
| 492 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 493 | func (x *TestAllTypes) GetOptionalForeignEnum() ForeignEnum { |
| 494 | if x != nil && x.OptionalForeignEnum != nil { |
| 495 | return *x.OptionalForeignEnum |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 496 | } |
| 497 | return ForeignEnum_FOREIGN_FOO |
| 498 | } |
| 499 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 500 | func (x *TestAllTypes) GetOptionalImportEnum() ImportEnum { |
| 501 | if x != nil && x.OptionalImportEnum != nil { |
| 502 | return *x.OptionalImportEnum |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 503 | } |
| 504 | return ImportEnum_IMPORT_ZERO |
| 505 | } |
| 506 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 507 | func (x *TestAllTypes) GetRepeatedInt32() []int32 { |
| 508 | if x != nil { |
| 509 | return x.RepeatedInt32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 510 | } |
| 511 | return nil |
| 512 | } |
| 513 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 514 | func (x *TestAllTypes) GetRepeatedInt64() []int64 { |
| 515 | if x != nil { |
| 516 | return x.RepeatedInt64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 517 | } |
| 518 | return nil |
| 519 | } |
| 520 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 521 | func (x *TestAllTypes) GetRepeatedUint32() []uint32 { |
| 522 | if x != nil { |
| 523 | return x.RepeatedUint32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 524 | } |
| 525 | return nil |
| 526 | } |
| 527 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 528 | func (x *TestAllTypes) GetRepeatedUint64() []uint64 { |
| 529 | if x != nil { |
| 530 | return x.RepeatedUint64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 531 | } |
| 532 | return nil |
| 533 | } |
| 534 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 535 | func (x *TestAllTypes) GetRepeatedSint32() []int32 { |
| 536 | if x != nil { |
| 537 | return x.RepeatedSint32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 538 | } |
| 539 | return nil |
| 540 | } |
| 541 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 542 | func (x *TestAllTypes) GetRepeatedSint64() []int64 { |
| 543 | if x != nil { |
| 544 | return x.RepeatedSint64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 545 | } |
| 546 | return nil |
| 547 | } |
| 548 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 549 | func (x *TestAllTypes) GetRepeatedFixed32() []uint32 { |
| 550 | if x != nil { |
| 551 | return x.RepeatedFixed32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 552 | } |
| 553 | return nil |
| 554 | } |
| 555 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 556 | func (x *TestAllTypes) GetRepeatedFixed64() []uint64 { |
| 557 | if x != nil { |
| 558 | return x.RepeatedFixed64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 559 | } |
| 560 | return nil |
| 561 | } |
| 562 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 563 | func (x *TestAllTypes) GetRepeatedSfixed32() []int32 { |
| 564 | if x != nil { |
| 565 | return x.RepeatedSfixed32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 566 | } |
| 567 | return nil |
| 568 | } |
| 569 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 570 | func (x *TestAllTypes) GetRepeatedSfixed64() []int64 { |
| 571 | if x != nil { |
| 572 | return x.RepeatedSfixed64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 573 | } |
| 574 | return nil |
| 575 | } |
| 576 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 577 | func (x *TestAllTypes) GetRepeatedFloat() []float32 { |
| 578 | if x != nil { |
| 579 | return x.RepeatedFloat |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 580 | } |
| 581 | return nil |
| 582 | } |
| 583 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 584 | func (x *TestAllTypes) GetRepeatedDouble() []float64 { |
| 585 | if x != nil { |
| 586 | return x.RepeatedDouble |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 587 | } |
| 588 | return nil |
| 589 | } |
| 590 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 591 | func (x *TestAllTypes) GetRepeatedBool() []bool { |
| 592 | if x != nil { |
| 593 | return x.RepeatedBool |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 594 | } |
| 595 | return nil |
| 596 | } |
| 597 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 598 | func (x *TestAllTypes) GetRepeatedString() []string { |
| 599 | if x != nil { |
| 600 | return x.RepeatedString |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 601 | } |
| 602 | return nil |
| 603 | } |
| 604 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 605 | func (x *TestAllTypes) GetRepeatedBytes() [][]byte { |
| 606 | if x != nil { |
| 607 | return x.RepeatedBytes |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 608 | } |
| 609 | return nil |
| 610 | } |
| 611 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 612 | func (x *TestAllTypes) GetRepeatedgroup() []*TestAllTypes_RepeatedGroup { |
| 613 | if x != nil { |
| 614 | return x.Repeatedgroup |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 615 | } |
| 616 | return nil |
| 617 | } |
| 618 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 619 | func (x *TestAllTypes) GetRepeatedNestedMessage() []*TestAllTypes_NestedMessage { |
| 620 | if x != nil { |
| 621 | return x.RepeatedNestedMessage |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 622 | } |
| 623 | return nil |
| 624 | } |
| 625 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 626 | func (x *TestAllTypes) GetRepeatedForeignMessage() []*ForeignMessage { |
| 627 | if x != nil { |
| 628 | return x.RepeatedForeignMessage |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 629 | } |
| 630 | return nil |
| 631 | } |
| 632 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 633 | func (x *TestAllTypes) GetRepeatedImportmessage() []*ImportMessage { |
| 634 | if x != nil { |
| 635 | return x.RepeatedImportmessage |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 636 | } |
| 637 | return nil |
| 638 | } |
| 639 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 640 | func (x *TestAllTypes) GetRepeatedNestedEnum() []TestAllTypes_NestedEnum { |
| 641 | if x != nil { |
| 642 | return x.RepeatedNestedEnum |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 643 | } |
| 644 | return nil |
| 645 | } |
| 646 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 647 | func (x *TestAllTypes) GetRepeatedForeignEnum() []ForeignEnum { |
| 648 | if x != nil { |
| 649 | return x.RepeatedForeignEnum |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 650 | } |
| 651 | return nil |
| 652 | } |
| 653 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 654 | func (x *TestAllTypes) GetRepeatedImportenum() []ImportEnum { |
| 655 | if x != nil { |
| 656 | return x.RepeatedImportenum |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 657 | } |
| 658 | return nil |
| 659 | } |
| 660 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 661 | func (x *TestAllTypes) GetMapInt32Int32() map[int32]int32 { |
| 662 | if x != nil { |
| 663 | return x.MapInt32Int32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 664 | } |
| 665 | return nil |
| 666 | } |
| 667 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 668 | func (x *TestAllTypes) GetMapInt64Int64() map[int64]int64 { |
| 669 | if x != nil { |
| 670 | return x.MapInt64Int64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 671 | } |
| 672 | return nil |
| 673 | } |
| 674 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 675 | func (x *TestAllTypes) GetMapUint32Uint32() map[uint32]uint32 { |
| 676 | if x != nil { |
| 677 | return x.MapUint32Uint32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 678 | } |
| 679 | return nil |
| 680 | } |
| 681 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 682 | func (x *TestAllTypes) GetMapUint64Uint64() map[uint64]uint64 { |
| 683 | if x != nil { |
| 684 | return x.MapUint64Uint64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 685 | } |
| 686 | return nil |
| 687 | } |
| 688 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 689 | func (x *TestAllTypes) GetMapSint32Sint32() map[int32]int32 { |
| 690 | if x != nil { |
| 691 | return x.MapSint32Sint32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 692 | } |
| 693 | return nil |
| 694 | } |
| 695 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 696 | func (x *TestAllTypes) GetMapSint64Sint64() map[int64]int64 { |
| 697 | if x != nil { |
| 698 | return x.MapSint64Sint64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 699 | } |
| 700 | return nil |
| 701 | } |
| 702 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 703 | func (x *TestAllTypes) GetMapFixed32Fixed32() map[uint32]uint32 { |
| 704 | if x != nil { |
| 705 | return x.MapFixed32Fixed32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 706 | } |
| 707 | return nil |
| 708 | } |
| 709 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 710 | func (x *TestAllTypes) GetMapFixed64Fixed64() map[uint64]uint64 { |
| 711 | if x != nil { |
| 712 | return x.MapFixed64Fixed64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 713 | } |
| 714 | return nil |
| 715 | } |
| 716 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 717 | func (x *TestAllTypes) GetMapSfixed32Sfixed32() map[int32]int32 { |
| 718 | if x != nil { |
| 719 | return x.MapSfixed32Sfixed32 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 720 | } |
| 721 | return nil |
| 722 | } |
| 723 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 724 | func (x *TestAllTypes) GetMapSfixed64Sfixed64() map[int64]int64 { |
| 725 | if x != nil { |
| 726 | return x.MapSfixed64Sfixed64 |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 727 | } |
| 728 | return nil |
| 729 | } |
| 730 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 731 | func (x *TestAllTypes) GetMapInt32Float() map[int32]float32 { |
| 732 | if x != nil { |
| 733 | return x.MapInt32Float |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 734 | } |
| 735 | return nil |
| 736 | } |
| 737 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 738 | func (x *TestAllTypes) GetMapInt32Double() map[int32]float64 { |
| 739 | if x != nil { |
| 740 | return x.MapInt32Double |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 741 | } |
| 742 | return nil |
| 743 | } |
| 744 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 745 | func (x *TestAllTypes) GetMapBoolBool() map[bool]bool { |
| 746 | if x != nil { |
| 747 | return x.MapBoolBool |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 748 | } |
| 749 | return nil |
| 750 | } |
| 751 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 752 | func (x *TestAllTypes) GetMapStringString() map[string]string { |
| 753 | if x != nil { |
| 754 | return x.MapStringString |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 755 | } |
| 756 | return nil |
| 757 | } |
| 758 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 759 | func (x *TestAllTypes) GetMapStringBytes() map[string][]byte { |
| 760 | if x != nil { |
| 761 | return x.MapStringBytes |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 762 | } |
| 763 | return nil |
| 764 | } |
| 765 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 766 | func (x *TestAllTypes) GetMapStringNestedMessage() map[string]*TestAllTypes_NestedMessage { |
| 767 | if x != nil { |
| 768 | return x.MapStringNestedMessage |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 769 | } |
| 770 | return nil |
| 771 | } |
| 772 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 773 | func (x *TestAllTypes) GetMapStringNestedEnum() map[string]TestAllTypes_NestedEnum { |
| 774 | if x != nil { |
| 775 | return x.MapStringNestedEnum |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 776 | } |
| 777 | return nil |
| 778 | } |
| 779 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 780 | func (x *TestAllTypes) GetDefaultInt32() int32 { |
| 781 | if x != nil && x.DefaultInt32 != nil { |
| 782 | return *x.DefaultInt32 |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 783 | } |
| 784 | return Default_TestAllTypes_DefaultInt32 |
| 785 | } |
| 786 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 787 | func (x *TestAllTypes) GetDefaultInt64() int64 { |
| 788 | if x != nil && x.DefaultInt64 != nil { |
| 789 | return *x.DefaultInt64 |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 790 | } |
| 791 | return Default_TestAllTypes_DefaultInt64 |
| 792 | } |
| 793 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 794 | func (x *TestAllTypes) GetDefaultUint32() uint32 { |
| 795 | if x != nil && x.DefaultUint32 != nil { |
| 796 | return *x.DefaultUint32 |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 797 | } |
| 798 | return Default_TestAllTypes_DefaultUint32 |
| 799 | } |
| 800 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 801 | func (x *TestAllTypes) GetDefaultUint64() uint64 { |
| 802 | if x != nil && x.DefaultUint64 != nil { |
| 803 | return *x.DefaultUint64 |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 804 | } |
| 805 | return Default_TestAllTypes_DefaultUint64 |
| 806 | } |
| 807 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 808 | func (x *TestAllTypes) GetDefaultSint32() int32 { |
| 809 | if x != nil && x.DefaultSint32 != nil { |
| 810 | return *x.DefaultSint32 |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 811 | } |
| 812 | return Default_TestAllTypes_DefaultSint32 |
| 813 | } |
| 814 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 815 | func (x *TestAllTypes) GetDefaultSint64() int64 { |
| 816 | if x != nil && x.DefaultSint64 != nil { |
| 817 | return *x.DefaultSint64 |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 818 | } |
| 819 | return Default_TestAllTypes_DefaultSint64 |
| 820 | } |
| 821 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 822 | func (x *TestAllTypes) GetDefaultFixed32() uint32 { |
| 823 | if x != nil && x.DefaultFixed32 != nil { |
| 824 | return *x.DefaultFixed32 |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 825 | } |
| 826 | return Default_TestAllTypes_DefaultFixed32 |
| 827 | } |
| 828 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 829 | func (x *TestAllTypes) GetDefaultFixed64() uint64 { |
| 830 | if x != nil && x.DefaultFixed64 != nil { |
| 831 | return *x.DefaultFixed64 |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 832 | } |
| 833 | return Default_TestAllTypes_DefaultFixed64 |
| 834 | } |
| 835 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 836 | func (x *TestAllTypes) GetDefaultSfixed32() int32 { |
| 837 | if x != nil && x.DefaultSfixed32 != nil { |
| 838 | return *x.DefaultSfixed32 |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 839 | } |
| 840 | return Default_TestAllTypes_DefaultSfixed32 |
| 841 | } |
| 842 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 843 | func (x *TestAllTypes) GetDefaultSfixed64() int64 { |
| 844 | if x != nil && x.DefaultSfixed64 != nil { |
| 845 | return *x.DefaultSfixed64 |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 846 | } |
| 847 | return Default_TestAllTypes_DefaultSfixed64 |
| 848 | } |
| 849 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 850 | func (x *TestAllTypes) GetDefaultFloat() float32 { |
| 851 | if x != nil && x.DefaultFloat != nil { |
| 852 | return *x.DefaultFloat |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 853 | } |
| 854 | return Default_TestAllTypes_DefaultFloat |
| 855 | } |
| 856 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 857 | func (x *TestAllTypes) GetDefaultDouble() float64 { |
| 858 | if x != nil && x.DefaultDouble != nil { |
| 859 | return *x.DefaultDouble |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 860 | } |
| 861 | return Default_TestAllTypes_DefaultDouble |
| 862 | } |
| 863 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 864 | func (x *TestAllTypes) GetDefaultBool() bool { |
| 865 | if x != nil && x.DefaultBool != nil { |
| 866 | return *x.DefaultBool |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 867 | } |
| 868 | return Default_TestAllTypes_DefaultBool |
| 869 | } |
| 870 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 871 | func (x *TestAllTypes) GetDefaultString() string { |
| 872 | if x != nil && x.DefaultString != nil { |
| 873 | return *x.DefaultString |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 874 | } |
| 875 | return Default_TestAllTypes_DefaultString |
| 876 | } |
| 877 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 878 | func (x *TestAllTypes) GetDefaultBytes() []byte { |
| 879 | if x != nil && x.DefaultBytes != nil { |
| 880 | return x.DefaultBytes |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 881 | } |
| 882 | return append([]byte(nil), Default_TestAllTypes_DefaultBytes...) |
| 883 | } |
| 884 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 885 | func (x *TestAllTypes) GetDefaultNestedEnum() TestAllTypes_NestedEnum { |
| 886 | if x != nil && x.DefaultNestedEnum != nil { |
| 887 | return *x.DefaultNestedEnum |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 888 | } |
| 889 | return Default_TestAllTypes_DefaultNestedEnum |
| 890 | } |
| 891 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 892 | func (x *TestAllTypes) GetDefaultForeignEnum() ForeignEnum { |
| 893 | if x != nil && x.DefaultForeignEnum != nil { |
| 894 | return *x.DefaultForeignEnum |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 895 | } |
| 896 | return Default_TestAllTypes_DefaultForeignEnum |
| 897 | } |
| 898 | |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 899 | type isTestAllTypes_OneofField interface { |
| 900 | isTestAllTypes_OneofField() |
| 901 | } |
| 902 | |
| 903 | type TestAllTypes_OneofUint32 struct { |
| 904 | OneofUint32 uint32 `protobuf:"varint,111,opt,name=oneof_uint32,json=oneofUint32,oneof"` |
| 905 | } |
| 906 | |
| 907 | type TestAllTypes_OneofNestedMessage struct { |
| 908 | OneofNestedMessage *TestAllTypes_NestedMessage `protobuf:"bytes,112,opt,name=oneof_nested_message,json=oneofNestedMessage,oneof"` |
| 909 | } |
| 910 | |
| 911 | type TestAllTypes_OneofString struct { |
| 912 | OneofString string `protobuf:"bytes,113,opt,name=oneof_string,json=oneofString,oneof"` |
| 913 | } |
| 914 | |
| 915 | type TestAllTypes_OneofBytes struct { |
| 916 | OneofBytes []byte `protobuf:"bytes,114,opt,name=oneof_bytes,json=oneofBytes,oneof"` |
| 917 | } |
| 918 | |
| 919 | type TestAllTypes_OneofBool struct { |
| 920 | OneofBool bool `protobuf:"varint,115,opt,name=oneof_bool,json=oneofBool,oneof"` |
| 921 | } |
| 922 | |
| 923 | type TestAllTypes_OneofUint64 struct { |
| 924 | OneofUint64 uint64 `protobuf:"varint,116,opt,name=oneof_uint64,json=oneofUint64,oneof"` |
| 925 | } |
| 926 | |
| 927 | type TestAllTypes_OneofFloat struct { |
| 928 | OneofFloat float32 `protobuf:"fixed32,117,opt,name=oneof_float,json=oneofFloat,oneof"` |
| 929 | } |
| 930 | |
| 931 | type TestAllTypes_OneofDouble struct { |
| 932 | OneofDouble float64 `protobuf:"fixed64,118,opt,name=oneof_double,json=oneofDouble,oneof"` |
| 933 | } |
| 934 | |
| 935 | type TestAllTypes_OneofEnum struct { |
| 936 | OneofEnum TestAllTypes_NestedEnum `protobuf:"varint,119,opt,name=oneof_enum,json=oneofEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum,oneof"` |
| 937 | } |
| 938 | |
| 939 | func (*TestAllTypes_OneofUint32) isTestAllTypes_OneofField() {} |
| 940 | |
| 941 | func (*TestAllTypes_OneofNestedMessage) isTestAllTypes_OneofField() {} |
| 942 | |
| 943 | func (*TestAllTypes_OneofString) isTestAllTypes_OneofField() {} |
| 944 | |
| 945 | func (*TestAllTypes_OneofBytes) isTestAllTypes_OneofField() {} |
| 946 | |
| 947 | func (*TestAllTypes_OneofBool) isTestAllTypes_OneofField() {} |
| 948 | |
| 949 | func (*TestAllTypes_OneofUint64) isTestAllTypes_OneofField() {} |
| 950 | |
| 951 | func (*TestAllTypes_OneofFloat) isTestAllTypes_OneofField() {} |
| 952 | |
| 953 | func (*TestAllTypes_OneofDouble) isTestAllTypes_OneofField() {} |
| 954 | |
| 955 | func (*TestAllTypes_OneofEnum) isTestAllTypes_OneofField() {} |
| 956 | |
| 957 | func (m *TestAllTypes) GetOneofField() isTestAllTypes_OneofField { |
| 958 | if m != nil { |
| 959 | return m.OneofField |
| 960 | } |
| 961 | return nil |
| 962 | } |
| 963 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 964 | func (x *TestAllTypes) GetOneofUint32() uint32 { |
| 965 | if x, ok := x.GetOneofField().(*TestAllTypes_OneofUint32); ok { |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 966 | return x.OneofUint32 |
| 967 | } |
| 968 | return 0 |
| 969 | } |
| 970 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 971 | func (x *TestAllTypes) GetOneofNestedMessage() *TestAllTypes_NestedMessage { |
| 972 | if x, ok := x.GetOneofField().(*TestAllTypes_OneofNestedMessage); ok { |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 973 | return x.OneofNestedMessage |
| 974 | } |
| 975 | return nil |
| 976 | } |
| 977 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 978 | func (x *TestAllTypes) GetOneofString() string { |
| 979 | if x, ok := x.GetOneofField().(*TestAllTypes_OneofString); ok { |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 980 | return x.OneofString |
| 981 | } |
| 982 | return "" |
| 983 | } |
| 984 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 985 | func (x *TestAllTypes) GetOneofBytes() []byte { |
| 986 | if x, ok := x.GetOneofField().(*TestAllTypes_OneofBytes); ok { |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 987 | return x.OneofBytes |
| 988 | } |
| 989 | return nil |
| 990 | } |
| 991 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 992 | func (x *TestAllTypes) GetOneofBool() bool { |
| 993 | if x, ok := x.GetOneofField().(*TestAllTypes_OneofBool); ok { |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 994 | return x.OneofBool |
| 995 | } |
| 996 | return false |
| 997 | } |
| 998 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 999 | func (x *TestAllTypes) GetOneofUint64() uint64 { |
| 1000 | if x, ok := x.GetOneofField().(*TestAllTypes_OneofUint64); ok { |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1001 | return x.OneofUint64 |
| 1002 | } |
| 1003 | return 0 |
| 1004 | } |
| 1005 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1006 | func (x *TestAllTypes) GetOneofFloat() float32 { |
| 1007 | if x, ok := x.GetOneofField().(*TestAllTypes_OneofFloat); ok { |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1008 | return x.OneofFloat |
| 1009 | } |
| 1010 | return 0 |
| 1011 | } |
| 1012 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1013 | func (x *TestAllTypes) GetOneofDouble() float64 { |
| 1014 | if x, ok := x.GetOneofField().(*TestAllTypes_OneofDouble); ok { |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1015 | return x.OneofDouble |
| 1016 | } |
| 1017 | return 0 |
| 1018 | } |
| 1019 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1020 | func (x *TestAllTypes) GetOneofEnum() TestAllTypes_NestedEnum { |
| 1021 | if x, ok := x.GetOneofField().(*TestAllTypes_OneofEnum); ok { |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1022 | return x.OneofEnum |
| 1023 | } |
| 1024 | return TestAllTypes_FOO |
| 1025 | } |
| 1026 | |
| 1027 | // XXX_OneofWrappers is for the internal use of the proto package. |
| 1028 | func (*TestAllTypes) XXX_OneofWrappers() []interface{} { |
| 1029 | return []interface{}{ |
| 1030 | (*TestAllTypes_OneofUint32)(nil), |
| 1031 | (*TestAllTypes_OneofNestedMessage)(nil), |
| 1032 | (*TestAllTypes_OneofString)(nil), |
| 1033 | (*TestAllTypes_OneofBytes)(nil), |
| 1034 | (*TestAllTypes_OneofBool)(nil), |
| 1035 | (*TestAllTypes_OneofUint64)(nil), |
| 1036 | (*TestAllTypes_OneofFloat)(nil), |
| 1037 | (*TestAllTypes_OneofDouble)(nil), |
| 1038 | (*TestAllTypes_OneofEnum)(nil), |
| 1039 | } |
| 1040 | } |
| 1041 | |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1042 | // Deprecated: Do not use. |
| 1043 | type TestDeprecatedMessage struct { |
| 1044 | DeprecatedInt32 *int32 `protobuf:"varint,1,opt,name=deprecated_int32,json=deprecatedInt32" json:"deprecated_int32,omitempty"` // Deprecated: Do not use. |
| 1045 | // Types that are valid to be assigned to DeprecatedOneof: |
| 1046 | // *TestDeprecatedMessage_DeprecatedOneofField |
| 1047 | DeprecatedOneof isTestDeprecatedMessage_DeprecatedOneof `protobuf_oneof:"deprecated_oneof"` |
| 1048 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1049 | XXX_unrecognized []byte `json:"-"` |
| 1050 | XXX_sizecache int32 `json:"-"` |
| 1051 | } |
| 1052 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1053 | func (x *TestDeprecatedMessage) Reset() { |
| 1054 | *x = TestDeprecatedMessage{} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1055 | } |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1056 | |
| 1057 | func (x *TestDeprecatedMessage) String() string { |
| 1058 | return protoimpl.X.MessageStringOf(x) |
| 1059 | } |
| 1060 | |
| 1061 | func (*TestDeprecatedMessage) ProtoMessage() {} |
| 1062 | |
| 1063 | func (x *TestDeprecatedMessage) ProtoReflect() protoreflect.Message { |
| 1064 | return xxx_File_test_test_proto_messageTypes[1].MessageOf(x) |
| 1065 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 1066 | |
| 1067 | // Deprecated: Use TestDeprecatedMessage.ProtoReflect.Type instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1068 | func (*TestDeprecatedMessage) Descriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 1069 | return xxx_File_test_test_proto_rawDescGZIP(), []int{1} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1070 | } |
| 1071 | |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1072 | // Deprecated: Do not use. |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1073 | func (x *TestDeprecatedMessage) GetDeprecatedInt32() int32 { |
| 1074 | if x != nil && x.DeprecatedInt32 != nil { |
| 1075 | return *x.DeprecatedInt32 |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1076 | } |
| 1077 | return 0 |
| 1078 | } |
| 1079 | |
| 1080 | type isTestDeprecatedMessage_DeprecatedOneof interface { |
| 1081 | isTestDeprecatedMessage_DeprecatedOneof() |
| 1082 | } |
| 1083 | |
| 1084 | type TestDeprecatedMessage_DeprecatedOneofField struct { |
| 1085 | DeprecatedOneofField int32 `protobuf:"varint,2,opt,name=deprecated_oneof_field,json=deprecatedOneofField,oneof"` |
| 1086 | } |
| 1087 | |
| 1088 | func (*TestDeprecatedMessage_DeprecatedOneofField) isTestDeprecatedMessage_DeprecatedOneof() {} |
| 1089 | |
| 1090 | func (m *TestDeprecatedMessage) GetDeprecatedOneof() isTestDeprecatedMessage_DeprecatedOneof { |
| 1091 | if m != nil { |
| 1092 | return m.DeprecatedOneof |
| 1093 | } |
| 1094 | return nil |
| 1095 | } |
| 1096 | |
| 1097 | // Deprecated: Do not use. |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1098 | func (x *TestDeprecatedMessage) GetDeprecatedOneofField() int32 { |
| 1099 | if x, ok := x.GetDeprecatedOneof().(*TestDeprecatedMessage_DeprecatedOneofField); ok { |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1100 | return x.DeprecatedOneofField |
| 1101 | } |
| 1102 | return 0 |
| 1103 | } |
| 1104 | |
| 1105 | // XXX_OneofWrappers is for the internal use of the proto package. |
| 1106 | func (*TestDeprecatedMessage) XXX_OneofWrappers() []interface{} { |
| 1107 | return []interface{}{ |
| 1108 | (*TestDeprecatedMessage_DeprecatedOneofField)(nil), |
| 1109 | } |
| 1110 | } |
| 1111 | |
| 1112 | type ForeignMessage struct { |
| 1113 | C *int32 `protobuf:"varint,1,opt,name=c" json:"c,omitempty"` |
| 1114 | D *int32 `protobuf:"varint,2,opt,name=d" json:"d,omitempty"` |
| 1115 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1116 | XXX_unrecognized []byte `json:"-"` |
| 1117 | XXX_sizecache int32 `json:"-"` |
| 1118 | } |
| 1119 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1120 | func (x *ForeignMessage) Reset() { |
| 1121 | *x = ForeignMessage{} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1122 | } |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1123 | |
| 1124 | func (x *ForeignMessage) String() string { |
| 1125 | return protoimpl.X.MessageStringOf(x) |
| 1126 | } |
| 1127 | |
| 1128 | func (*ForeignMessage) ProtoMessage() {} |
| 1129 | |
| 1130 | func (x *ForeignMessage) ProtoReflect() protoreflect.Message { |
| 1131 | return xxx_File_test_test_proto_messageTypes[2].MessageOf(x) |
| 1132 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 1133 | |
| 1134 | // Deprecated: Use ForeignMessage.ProtoReflect.Type instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1135 | func (*ForeignMessage) Descriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 1136 | return xxx_File_test_test_proto_rawDescGZIP(), []int{2} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1137 | } |
| 1138 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1139 | func (x *ForeignMessage) GetC() int32 { |
| 1140 | if x != nil && x.C != nil { |
| 1141 | return *x.C |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1142 | } |
| 1143 | return 0 |
| 1144 | } |
| 1145 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1146 | func (x *ForeignMessage) GetD() int32 { |
| 1147 | if x != nil && x.D != nil { |
| 1148 | return *x.D |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1149 | } |
| 1150 | return 0 |
| 1151 | } |
| 1152 | |
| 1153 | type TestReservedFields struct { |
| 1154 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1155 | XXX_unrecognized []byte `json:"-"` |
| 1156 | XXX_sizecache int32 `json:"-"` |
| 1157 | } |
| 1158 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1159 | func (x *TestReservedFields) Reset() { |
| 1160 | *x = TestReservedFields{} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1161 | } |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1162 | |
| 1163 | func (x *TestReservedFields) String() string { |
| 1164 | return protoimpl.X.MessageStringOf(x) |
| 1165 | } |
| 1166 | |
| 1167 | func (*TestReservedFields) ProtoMessage() {} |
| 1168 | |
| 1169 | func (x *TestReservedFields) ProtoReflect() protoreflect.Message { |
| 1170 | return xxx_File_test_test_proto_messageTypes[3].MessageOf(x) |
| 1171 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 1172 | |
| 1173 | // Deprecated: Use TestReservedFields.ProtoReflect.Type instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1174 | func (*TestReservedFields) Descriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 1175 | return xxx_File_test_test_proto_rawDescGZIP(), []int{3} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1176 | } |
| 1177 | |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1178 | type TestAllExtensions struct { |
Joe Tsai | 4fddeba | 2019-03-20 18:29:32 -0700 | [diff] [blame] | 1179 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1180 | XXX_InternalExtensions protoimpl.ExtensionFieldsV1 `json:"-"` |
| 1181 | XXX_unrecognized []byte `json:"-"` |
| 1182 | XXX_sizecache int32 `json:"-"` |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1183 | } |
| 1184 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1185 | func (x *TestAllExtensions) Reset() { |
| 1186 | *x = TestAllExtensions{} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1187 | } |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1188 | |
| 1189 | func (x *TestAllExtensions) String() string { |
| 1190 | return protoimpl.X.MessageStringOf(x) |
| 1191 | } |
| 1192 | |
| 1193 | func (*TestAllExtensions) ProtoMessage() {} |
| 1194 | |
| 1195 | func (x *TestAllExtensions) ProtoReflect() protoreflect.Message { |
| 1196 | return xxx_File_test_test_proto_messageTypes[4].MessageOf(x) |
| 1197 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 1198 | |
| 1199 | // Deprecated: Use TestAllExtensions.ProtoReflect.Type instead. |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1200 | func (*TestAllExtensions) Descriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 1201 | return xxx_File_test_test_proto_rawDescGZIP(), []int{4} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1202 | } |
| 1203 | |
Joe Tsai | 4fddeba | 2019-03-20 18:29:32 -0700 | [diff] [blame] | 1204 | var extRange_TestAllExtensions = []protoiface.ExtensionRangeV1{ |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1205 | {Start: 1, End: 536870911}, |
| 1206 | } |
| 1207 | |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 1208 | // Deprecated: Use TestAllExtensions.ProtoReflect.Type.ExtensionRanges instead. |
Joe Tsai | 4fddeba | 2019-03-20 18:29:32 -0700 | [diff] [blame] | 1209 | func (*TestAllExtensions) ExtensionRangeArray() []protoiface.ExtensionRangeV1 { |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1210 | return extRange_TestAllExtensions |
| 1211 | } |
| 1212 | |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1213 | type OptionalGroupExtension struct { |
| 1214 | A *int32 `protobuf:"varint,17,opt,name=a" json:"a,omitempty"` |
| 1215 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1216 | XXX_unrecognized []byte `json:"-"` |
| 1217 | XXX_sizecache int32 `json:"-"` |
| 1218 | } |
| 1219 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1220 | func (x *OptionalGroupExtension) Reset() { |
| 1221 | *x = OptionalGroupExtension{} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1222 | } |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1223 | |
| 1224 | func (x *OptionalGroupExtension) String() string { |
| 1225 | return protoimpl.X.MessageStringOf(x) |
| 1226 | } |
| 1227 | |
| 1228 | func (*OptionalGroupExtension) ProtoMessage() {} |
| 1229 | |
| 1230 | func (x *OptionalGroupExtension) ProtoReflect() protoreflect.Message { |
| 1231 | return xxx_File_test_test_proto_messageTypes[5].MessageOf(x) |
| 1232 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 1233 | |
| 1234 | // Deprecated: Use OptionalGroupExtension.ProtoReflect.Type instead. |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1235 | func (*OptionalGroupExtension) Descriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 1236 | return xxx_File_test_test_proto_rawDescGZIP(), []int{5} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1237 | } |
| 1238 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1239 | func (x *OptionalGroupExtension) GetA() int32 { |
| 1240 | if x != nil && x.A != nil { |
| 1241 | return *x.A |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1242 | } |
| 1243 | return 0 |
| 1244 | } |
| 1245 | |
| 1246 | type RepeatedGroupExtension struct { |
| 1247 | A *int32 `protobuf:"varint,47,opt,name=a" json:"a,omitempty"` |
| 1248 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1249 | XXX_unrecognized []byte `json:"-"` |
| 1250 | XXX_sizecache int32 `json:"-"` |
| 1251 | } |
| 1252 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1253 | func (x *RepeatedGroupExtension) Reset() { |
| 1254 | *x = RepeatedGroupExtension{} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1255 | } |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1256 | |
| 1257 | func (x *RepeatedGroupExtension) String() string { |
| 1258 | return protoimpl.X.MessageStringOf(x) |
| 1259 | } |
| 1260 | |
| 1261 | func (*RepeatedGroupExtension) ProtoMessage() {} |
| 1262 | |
| 1263 | func (x *RepeatedGroupExtension) ProtoReflect() protoreflect.Message { |
| 1264 | return xxx_File_test_test_proto_messageTypes[6].MessageOf(x) |
| 1265 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 1266 | |
| 1267 | // Deprecated: Use RepeatedGroupExtension.ProtoReflect.Type instead. |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1268 | func (*RepeatedGroupExtension) Descriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 1269 | return xxx_File_test_test_proto_rawDescGZIP(), []int{6} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1270 | } |
| 1271 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1272 | func (x *RepeatedGroupExtension) GetA() int32 { |
| 1273 | if x != nil && x.A != nil { |
| 1274 | return *x.A |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1275 | } |
| 1276 | return 0 |
| 1277 | } |
| 1278 | |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1279 | type TestNestedExtension struct { |
| 1280 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1281 | XXX_unrecognized []byte `json:"-"` |
| 1282 | XXX_sizecache int32 `json:"-"` |
| 1283 | } |
| 1284 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1285 | func (x *TestNestedExtension) Reset() { |
| 1286 | *x = TestNestedExtension{} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1287 | } |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1288 | |
| 1289 | func (x *TestNestedExtension) String() string { |
| 1290 | return protoimpl.X.MessageStringOf(x) |
| 1291 | } |
| 1292 | |
| 1293 | func (*TestNestedExtension) ProtoMessage() {} |
| 1294 | |
| 1295 | func (x *TestNestedExtension) ProtoReflect() protoreflect.Message { |
| 1296 | return xxx_File_test_test_proto_messageTypes[7].MessageOf(x) |
| 1297 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 1298 | |
| 1299 | // Deprecated: Use TestNestedExtension.ProtoReflect.Type instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1300 | func (*TestNestedExtension) Descriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 1301 | return xxx_File_test_test_proto_rawDescGZIP(), []int{7} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1302 | } |
| 1303 | |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1304 | // Test that RPC services work. |
| 1305 | type FooRequest struct { |
| 1306 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1307 | XXX_unrecognized []byte `json:"-"` |
| 1308 | XXX_sizecache int32 `json:"-"` |
| 1309 | } |
| 1310 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1311 | func (x *FooRequest) Reset() { |
| 1312 | *x = FooRequest{} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1313 | } |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1314 | |
| 1315 | func (x *FooRequest) String() string { |
| 1316 | return protoimpl.X.MessageStringOf(x) |
| 1317 | } |
| 1318 | |
| 1319 | func (*FooRequest) ProtoMessage() {} |
| 1320 | |
| 1321 | func (x *FooRequest) ProtoReflect() protoreflect.Message { |
| 1322 | return xxx_File_test_test_proto_messageTypes[8].MessageOf(x) |
| 1323 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 1324 | |
| 1325 | // Deprecated: Use FooRequest.ProtoReflect.Type instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1326 | func (*FooRequest) Descriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 1327 | return xxx_File_test_test_proto_rawDescGZIP(), []int{8} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1328 | } |
| 1329 | |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1330 | type FooResponse struct { |
| 1331 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1332 | XXX_unrecognized []byte `json:"-"` |
| 1333 | XXX_sizecache int32 `json:"-"` |
| 1334 | } |
| 1335 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1336 | func (x *FooResponse) Reset() { |
| 1337 | *x = FooResponse{} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1338 | } |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1339 | |
| 1340 | func (x *FooResponse) String() string { |
| 1341 | return protoimpl.X.MessageStringOf(x) |
| 1342 | } |
| 1343 | |
| 1344 | func (*FooResponse) ProtoMessage() {} |
| 1345 | |
| 1346 | func (x *FooResponse) ProtoReflect() protoreflect.Message { |
| 1347 | return xxx_File_test_test_proto_messageTypes[9].MessageOf(x) |
| 1348 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 1349 | |
| 1350 | // Deprecated: Use FooResponse.ProtoReflect.Type instead. |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1351 | func (*FooResponse) Descriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 1352 | return xxx_File_test_test_proto_rawDescGZIP(), []int{9} |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1353 | } |
| 1354 | |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1355 | type TestAllTypes_NestedMessage struct { |
| 1356 | A *int32 `protobuf:"varint,1,opt,name=a" json:"a,omitempty"` |
| 1357 | Corecursive *TestAllTypes `protobuf:"bytes,2,opt,name=corecursive" json:"corecursive,omitempty"` |
| 1358 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1359 | XXX_unrecognized []byte `json:"-"` |
| 1360 | XXX_sizecache int32 `json:"-"` |
| 1361 | } |
| 1362 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1363 | func (x *TestAllTypes_NestedMessage) Reset() { |
| 1364 | *x = TestAllTypes_NestedMessage{} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1365 | } |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1366 | |
| 1367 | func (x *TestAllTypes_NestedMessage) String() string { |
| 1368 | return protoimpl.X.MessageStringOf(x) |
| 1369 | } |
| 1370 | |
| 1371 | func (*TestAllTypes_NestedMessage) ProtoMessage() {} |
| 1372 | |
| 1373 | func (x *TestAllTypes_NestedMessage) ProtoReflect() protoreflect.Message { |
| 1374 | return xxx_File_test_test_proto_messageTypes[10].MessageOf(x) |
| 1375 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 1376 | |
| 1377 | // Deprecated: Use TestAllTypes_NestedMessage.ProtoReflect.Type instead. |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1378 | func (*TestAllTypes_NestedMessage) Descriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 1379 | return xxx_File_test_test_proto_rawDescGZIP(), []int{0, 0} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1380 | } |
| 1381 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1382 | func (x *TestAllTypes_NestedMessage) GetA() int32 { |
| 1383 | if x != nil && x.A != nil { |
| 1384 | return *x.A |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1385 | } |
| 1386 | return 0 |
| 1387 | } |
| 1388 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1389 | func (x *TestAllTypes_NestedMessage) GetCorecursive() *TestAllTypes { |
| 1390 | if x != nil { |
| 1391 | return x.Corecursive |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1392 | } |
| 1393 | return nil |
| 1394 | } |
| 1395 | |
| 1396 | type TestAllTypes_OptionalGroup struct { |
| 1397 | A *int32 `protobuf:"varint,17,opt,name=a" json:"a,omitempty"` |
| 1398 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1399 | XXX_unrecognized []byte `json:"-"` |
| 1400 | XXX_sizecache int32 `json:"-"` |
| 1401 | } |
| 1402 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1403 | func (x *TestAllTypes_OptionalGroup) Reset() { |
| 1404 | *x = TestAllTypes_OptionalGroup{} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1405 | } |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1406 | |
| 1407 | func (x *TestAllTypes_OptionalGroup) String() string { |
| 1408 | return protoimpl.X.MessageStringOf(x) |
| 1409 | } |
| 1410 | |
| 1411 | func (*TestAllTypes_OptionalGroup) ProtoMessage() {} |
| 1412 | |
| 1413 | func (x *TestAllTypes_OptionalGroup) ProtoReflect() protoreflect.Message { |
| 1414 | return xxx_File_test_test_proto_messageTypes[11].MessageOf(x) |
| 1415 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 1416 | |
| 1417 | // Deprecated: Use TestAllTypes_OptionalGroup.ProtoReflect.Type instead. |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1418 | func (*TestAllTypes_OptionalGroup) Descriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 1419 | return xxx_File_test_test_proto_rawDescGZIP(), []int{0, 1} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1420 | } |
| 1421 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1422 | func (x *TestAllTypes_OptionalGroup) GetA() int32 { |
| 1423 | if x != nil && x.A != nil { |
| 1424 | return *x.A |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1425 | } |
| 1426 | return 0 |
| 1427 | } |
| 1428 | |
| 1429 | type TestAllTypes_RepeatedGroup struct { |
| 1430 | A *int32 `protobuf:"varint,47,opt,name=a" json:"a,omitempty"` |
| 1431 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1432 | XXX_unrecognized []byte `json:"-"` |
| 1433 | XXX_sizecache int32 `json:"-"` |
| 1434 | } |
| 1435 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1436 | func (x *TestAllTypes_RepeatedGroup) Reset() { |
| 1437 | *x = TestAllTypes_RepeatedGroup{} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1438 | } |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1439 | |
| 1440 | func (x *TestAllTypes_RepeatedGroup) String() string { |
| 1441 | return protoimpl.X.MessageStringOf(x) |
| 1442 | } |
| 1443 | |
| 1444 | func (*TestAllTypes_RepeatedGroup) ProtoMessage() {} |
| 1445 | |
| 1446 | func (x *TestAllTypes_RepeatedGroup) ProtoReflect() protoreflect.Message { |
| 1447 | return xxx_File_test_test_proto_messageTypes[12].MessageOf(x) |
| 1448 | } |
Joe Tsai | 8e506a8 | 2019-03-16 00:05:34 -0700 | [diff] [blame] | 1449 | |
| 1450 | // Deprecated: Use TestAllTypes_RepeatedGroup.ProtoReflect.Type instead. |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1451 | func (*TestAllTypes_RepeatedGroup) Descriptor() ([]byte, []int) { |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 1452 | return xxx_File_test_test_proto_rawDescGZIP(), []int{0, 2} |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1453 | } |
| 1454 | |
Joe Tsai | 61968ce | 2019-04-01 12:59:24 -0700 | [diff] [blame] | 1455 | func (x *TestAllTypes_RepeatedGroup) GetA() int32 { |
| 1456 | if x != nil && x.A != nil { |
| 1457 | return *x.A |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1458 | } |
| 1459 | return 0 |
| 1460 | } |
| 1461 | |
Joe Tsai | 4fddeba | 2019-03-20 18:29:32 -0700 | [diff] [blame] | 1462 | var xxx_File_test_test_proto_extDescs = []protoiface.ExtensionDescV1{ |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1463 | { |
| 1464 | ExtendedType: (*TestAllExtensions)(nil), |
| 1465 | ExtensionType: (*int32)(nil), |
| 1466 | Field: 1, |
| 1467 | Name: "goproto.proto.test.optional_int32_extension", |
| 1468 | Tag: "varint,1,opt,name=optional_int32_extension", |
| 1469 | Filename: "test/test.proto", |
| 1470 | }, |
| 1471 | { |
| 1472 | ExtendedType: (*TestAllExtensions)(nil), |
| 1473 | ExtensionType: (*int64)(nil), |
| 1474 | Field: 2, |
| 1475 | Name: "goproto.proto.test.optional_int64_extension", |
| 1476 | Tag: "varint,2,opt,name=optional_int64_extension", |
| 1477 | Filename: "test/test.proto", |
| 1478 | }, |
| 1479 | { |
| 1480 | ExtendedType: (*TestAllExtensions)(nil), |
| 1481 | ExtensionType: (*uint32)(nil), |
| 1482 | Field: 3, |
| 1483 | Name: "goproto.proto.test.optional_uint32_extension", |
| 1484 | Tag: "varint,3,opt,name=optional_uint32_extension", |
| 1485 | Filename: "test/test.proto", |
| 1486 | }, |
| 1487 | { |
| 1488 | ExtendedType: (*TestAllExtensions)(nil), |
| 1489 | ExtensionType: (*uint64)(nil), |
| 1490 | Field: 4, |
| 1491 | Name: "goproto.proto.test.optional_uint64_extension", |
| 1492 | Tag: "varint,4,opt,name=optional_uint64_extension", |
| 1493 | Filename: "test/test.proto", |
| 1494 | }, |
| 1495 | { |
| 1496 | ExtendedType: (*TestAllExtensions)(nil), |
| 1497 | ExtensionType: (*int32)(nil), |
| 1498 | Field: 5, |
| 1499 | Name: "goproto.proto.test.optional_sint32_extension", |
| 1500 | Tag: "zigzag32,5,opt,name=optional_sint32_extension", |
| 1501 | Filename: "test/test.proto", |
| 1502 | }, |
| 1503 | { |
| 1504 | ExtendedType: (*TestAllExtensions)(nil), |
| 1505 | ExtensionType: (*int64)(nil), |
| 1506 | Field: 6, |
| 1507 | Name: "goproto.proto.test.optional_sint64_extension", |
| 1508 | Tag: "zigzag64,6,opt,name=optional_sint64_extension", |
| 1509 | Filename: "test/test.proto", |
| 1510 | }, |
| 1511 | { |
| 1512 | ExtendedType: (*TestAllExtensions)(nil), |
| 1513 | ExtensionType: (*uint32)(nil), |
| 1514 | Field: 7, |
| 1515 | Name: "goproto.proto.test.optional_fixed32_extension", |
| 1516 | Tag: "fixed32,7,opt,name=optional_fixed32_extension", |
| 1517 | Filename: "test/test.proto", |
| 1518 | }, |
| 1519 | { |
| 1520 | ExtendedType: (*TestAllExtensions)(nil), |
| 1521 | ExtensionType: (*uint64)(nil), |
| 1522 | Field: 8, |
| 1523 | Name: "goproto.proto.test.optional_fixed64_extension", |
| 1524 | Tag: "fixed64,8,opt,name=optional_fixed64_extension", |
| 1525 | Filename: "test/test.proto", |
| 1526 | }, |
| 1527 | { |
| 1528 | ExtendedType: (*TestAllExtensions)(nil), |
| 1529 | ExtensionType: (*int32)(nil), |
| 1530 | Field: 9, |
| 1531 | Name: "goproto.proto.test.optional_sfixed32_extension", |
| 1532 | Tag: "fixed32,9,opt,name=optional_sfixed32_extension", |
| 1533 | Filename: "test/test.proto", |
| 1534 | }, |
| 1535 | { |
| 1536 | ExtendedType: (*TestAllExtensions)(nil), |
| 1537 | ExtensionType: (*int64)(nil), |
| 1538 | Field: 10, |
| 1539 | Name: "goproto.proto.test.optional_sfixed64_extension", |
| 1540 | Tag: "fixed64,10,opt,name=optional_sfixed64_extension", |
| 1541 | Filename: "test/test.proto", |
| 1542 | }, |
| 1543 | { |
| 1544 | ExtendedType: (*TestAllExtensions)(nil), |
| 1545 | ExtensionType: (*float32)(nil), |
| 1546 | Field: 11, |
| 1547 | Name: "goproto.proto.test.optional_float_extension", |
| 1548 | Tag: "fixed32,11,opt,name=optional_float_extension", |
| 1549 | Filename: "test/test.proto", |
| 1550 | }, |
| 1551 | { |
| 1552 | ExtendedType: (*TestAllExtensions)(nil), |
| 1553 | ExtensionType: (*float64)(nil), |
| 1554 | Field: 12, |
| 1555 | Name: "goproto.proto.test.optional_double_extension", |
| 1556 | Tag: "fixed64,12,opt,name=optional_double_extension", |
| 1557 | Filename: "test/test.proto", |
| 1558 | }, |
| 1559 | { |
| 1560 | ExtendedType: (*TestAllExtensions)(nil), |
| 1561 | ExtensionType: (*bool)(nil), |
| 1562 | Field: 13, |
| 1563 | Name: "goproto.proto.test.optional_bool_extension", |
| 1564 | Tag: "varint,13,opt,name=optional_bool_extension", |
| 1565 | Filename: "test/test.proto", |
| 1566 | }, |
| 1567 | { |
| 1568 | ExtendedType: (*TestAllExtensions)(nil), |
| 1569 | ExtensionType: (*string)(nil), |
| 1570 | Field: 14, |
| 1571 | Name: "goproto.proto.test.optional_string_extension", |
| 1572 | Tag: "bytes,14,opt,name=optional_string_extension", |
| 1573 | Filename: "test/test.proto", |
| 1574 | }, |
| 1575 | { |
| 1576 | ExtendedType: (*TestAllExtensions)(nil), |
| 1577 | ExtensionType: ([]byte)(nil), |
| 1578 | Field: 15, |
| 1579 | Name: "goproto.proto.test.optional_bytes_extension", |
| 1580 | Tag: "bytes,15,opt,name=optional_bytes_extension", |
| 1581 | Filename: "test/test.proto", |
| 1582 | }, |
| 1583 | { |
| 1584 | ExtendedType: (*TestAllExtensions)(nil), |
| 1585 | ExtensionType: (*OptionalGroupExtension)(nil), |
| 1586 | Field: 16, |
| 1587 | Name: "goproto.proto.test.optionalgroup_extension", |
| 1588 | Tag: "group,16,opt,name=OptionalGroup_extension", |
| 1589 | Filename: "test/test.proto", |
| 1590 | }, |
| 1591 | { |
| 1592 | ExtendedType: (*TestAllExtensions)(nil), |
| 1593 | ExtensionType: (*TestAllTypes_NestedMessage)(nil), |
| 1594 | Field: 18, |
| 1595 | Name: "goproto.proto.test.optional_nested_message_extension", |
| 1596 | Tag: "bytes,18,opt,name=optional_nested_message_extension", |
| 1597 | Filename: "test/test.proto", |
| 1598 | }, |
| 1599 | { |
| 1600 | ExtendedType: (*TestAllExtensions)(nil), |
| 1601 | ExtensionType: (*TestAllTypes_NestedEnum)(nil), |
| 1602 | Field: 21, |
| 1603 | Name: "goproto.proto.test.optional_nested_enum_extension", |
| 1604 | Tag: "varint,21,opt,name=optional_nested_enum_extension,enum=goproto.proto.test.TestAllTypes_NestedEnum", |
| 1605 | Filename: "test/test.proto", |
| 1606 | }, |
| 1607 | { |
| 1608 | ExtendedType: (*TestAllExtensions)(nil), |
| 1609 | ExtensionType: ([]int32)(nil), |
| 1610 | Field: 31, |
| 1611 | Name: "goproto.proto.test.repeated_int32_extension", |
| 1612 | Tag: "varint,31,rep,name=repeated_int32_extension", |
| 1613 | Filename: "test/test.proto", |
| 1614 | }, |
| 1615 | { |
| 1616 | ExtendedType: (*TestAllExtensions)(nil), |
| 1617 | ExtensionType: ([]int64)(nil), |
| 1618 | Field: 32, |
| 1619 | Name: "goproto.proto.test.repeated_int64_extension", |
| 1620 | Tag: "varint,32,rep,name=repeated_int64_extension", |
| 1621 | Filename: "test/test.proto", |
| 1622 | }, |
| 1623 | { |
| 1624 | ExtendedType: (*TestAllExtensions)(nil), |
| 1625 | ExtensionType: ([]uint32)(nil), |
| 1626 | Field: 33, |
| 1627 | Name: "goproto.proto.test.repeated_uint32_extension", |
| 1628 | Tag: "varint,33,rep,name=repeated_uint32_extension", |
| 1629 | Filename: "test/test.proto", |
| 1630 | }, |
| 1631 | { |
| 1632 | ExtendedType: (*TestAllExtensions)(nil), |
| 1633 | ExtensionType: ([]uint64)(nil), |
| 1634 | Field: 34, |
| 1635 | Name: "goproto.proto.test.repeated_uint64_extension", |
| 1636 | Tag: "varint,34,rep,name=repeated_uint64_extension", |
| 1637 | Filename: "test/test.proto", |
| 1638 | }, |
| 1639 | { |
| 1640 | ExtendedType: (*TestAllExtensions)(nil), |
| 1641 | ExtensionType: ([]int32)(nil), |
| 1642 | Field: 35, |
| 1643 | Name: "goproto.proto.test.repeated_sint32_extension", |
| 1644 | Tag: "zigzag32,35,rep,name=repeated_sint32_extension", |
| 1645 | Filename: "test/test.proto", |
| 1646 | }, |
| 1647 | { |
| 1648 | ExtendedType: (*TestAllExtensions)(nil), |
| 1649 | ExtensionType: ([]int64)(nil), |
| 1650 | Field: 36, |
| 1651 | Name: "goproto.proto.test.repeated_sint64_extension", |
| 1652 | Tag: "zigzag64,36,rep,name=repeated_sint64_extension", |
| 1653 | Filename: "test/test.proto", |
| 1654 | }, |
| 1655 | { |
| 1656 | ExtendedType: (*TestAllExtensions)(nil), |
| 1657 | ExtensionType: ([]uint32)(nil), |
| 1658 | Field: 37, |
| 1659 | Name: "goproto.proto.test.repeated_fixed32_extension", |
| 1660 | Tag: "fixed32,37,rep,name=repeated_fixed32_extension", |
| 1661 | Filename: "test/test.proto", |
| 1662 | }, |
| 1663 | { |
| 1664 | ExtendedType: (*TestAllExtensions)(nil), |
| 1665 | ExtensionType: ([]uint64)(nil), |
| 1666 | Field: 38, |
| 1667 | Name: "goproto.proto.test.repeated_fixed64_extension", |
| 1668 | Tag: "fixed64,38,rep,name=repeated_fixed64_extension", |
| 1669 | Filename: "test/test.proto", |
| 1670 | }, |
| 1671 | { |
| 1672 | ExtendedType: (*TestAllExtensions)(nil), |
| 1673 | ExtensionType: ([]int32)(nil), |
| 1674 | Field: 39, |
| 1675 | Name: "goproto.proto.test.repeated_sfixed32_extension", |
| 1676 | Tag: "fixed32,39,rep,name=repeated_sfixed32_extension", |
| 1677 | Filename: "test/test.proto", |
| 1678 | }, |
| 1679 | { |
| 1680 | ExtendedType: (*TestAllExtensions)(nil), |
| 1681 | ExtensionType: ([]int64)(nil), |
| 1682 | Field: 40, |
| 1683 | Name: "goproto.proto.test.repeated_sfixed64_extension", |
| 1684 | Tag: "fixed64,40,rep,name=repeated_sfixed64_extension", |
| 1685 | Filename: "test/test.proto", |
| 1686 | }, |
| 1687 | { |
| 1688 | ExtendedType: (*TestAllExtensions)(nil), |
| 1689 | ExtensionType: ([]float32)(nil), |
| 1690 | Field: 41, |
| 1691 | Name: "goproto.proto.test.repeated_float_extension", |
| 1692 | Tag: "fixed32,41,rep,name=repeated_float_extension", |
| 1693 | Filename: "test/test.proto", |
| 1694 | }, |
| 1695 | { |
| 1696 | ExtendedType: (*TestAllExtensions)(nil), |
| 1697 | ExtensionType: ([]float64)(nil), |
| 1698 | Field: 42, |
| 1699 | Name: "goproto.proto.test.repeated_double_extension", |
| 1700 | Tag: "fixed64,42,rep,name=repeated_double_extension", |
| 1701 | Filename: "test/test.proto", |
| 1702 | }, |
| 1703 | { |
| 1704 | ExtendedType: (*TestAllExtensions)(nil), |
| 1705 | ExtensionType: ([]bool)(nil), |
| 1706 | Field: 43, |
| 1707 | Name: "goproto.proto.test.repeated_bool_extension", |
| 1708 | Tag: "varint,43,rep,name=repeated_bool_extension", |
| 1709 | Filename: "test/test.proto", |
| 1710 | }, |
| 1711 | { |
| 1712 | ExtendedType: (*TestAllExtensions)(nil), |
| 1713 | ExtensionType: ([]string)(nil), |
| 1714 | Field: 44, |
| 1715 | Name: "goproto.proto.test.repeated_string_extension", |
| 1716 | Tag: "bytes,44,rep,name=repeated_string_extension", |
| 1717 | Filename: "test/test.proto", |
| 1718 | }, |
| 1719 | { |
| 1720 | ExtendedType: (*TestAllExtensions)(nil), |
| 1721 | ExtensionType: ([][]byte)(nil), |
| 1722 | Field: 45, |
| 1723 | Name: "goproto.proto.test.repeated_bytes_extension", |
| 1724 | Tag: "bytes,45,rep,name=repeated_bytes_extension", |
| 1725 | Filename: "test/test.proto", |
| 1726 | }, |
| 1727 | { |
| 1728 | ExtendedType: (*TestAllExtensions)(nil), |
| 1729 | ExtensionType: ([]*RepeatedGroupExtension)(nil), |
| 1730 | Field: 46, |
| 1731 | Name: "goproto.proto.test.repeatedgroup_extension", |
| 1732 | Tag: "group,46,rep,name=RepeatedGroup_extension", |
| 1733 | Filename: "test/test.proto", |
| 1734 | }, |
| 1735 | { |
| 1736 | ExtendedType: (*TestAllExtensions)(nil), |
| 1737 | ExtensionType: ([]*TestAllTypes_NestedMessage)(nil), |
| 1738 | Field: 48, |
| 1739 | Name: "goproto.proto.test.repeated_nested_message_extension", |
| 1740 | Tag: "bytes,48,rep,name=repeated_nested_message_extension", |
| 1741 | Filename: "test/test.proto", |
| 1742 | }, |
| 1743 | { |
| 1744 | ExtendedType: (*TestAllExtensions)(nil), |
| 1745 | ExtensionType: ([]TestAllTypes_NestedEnum)(nil), |
| 1746 | Field: 51, |
| 1747 | Name: "goproto.proto.test.repeated_nested_enum_extension", |
| 1748 | Tag: "varint,51,rep,name=repeated_nested_enum_extension,enum=goproto.proto.test.TestAllTypes_NestedEnum", |
| 1749 | Filename: "test/test.proto", |
| 1750 | }, |
| 1751 | { |
| 1752 | ExtendedType: (*TestAllExtensions)(nil), |
| 1753 | ExtensionType: (*string)(nil), |
| 1754 | Field: 1003, |
| 1755 | Name: "goproto.proto.test.TestNestedExtension.nested_string_extension", |
| 1756 | Tag: "bytes,1003,opt,name=nested_string_extension", |
| 1757 | Filename: "test/test.proto", |
| 1758 | }, |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1759 | } |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1760 | var ( |
| 1761 | // extend goproto.proto.test.TestAllExtensions { optional int32 optional_int32_extension = 1; } |
| 1762 | E_OptionalInt32Extension = &xxx_File_test_test_proto_extDescs[0] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1763 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1764 | // extend goproto.proto.test.TestAllExtensions { optional int64 optional_int64_extension = 2; } |
| 1765 | E_OptionalInt64Extension = &xxx_File_test_test_proto_extDescs[1] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1766 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1767 | // extend goproto.proto.test.TestAllExtensions { optional uint32 optional_uint32_extension = 3; } |
| 1768 | E_OptionalUint32Extension = &xxx_File_test_test_proto_extDescs[2] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1769 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1770 | // extend goproto.proto.test.TestAllExtensions { optional uint64 optional_uint64_extension = 4; } |
| 1771 | E_OptionalUint64Extension = &xxx_File_test_test_proto_extDescs[3] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1772 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1773 | // extend goproto.proto.test.TestAllExtensions { optional sint32 optional_sint32_extension = 5; } |
| 1774 | E_OptionalSint32Extension = &xxx_File_test_test_proto_extDescs[4] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1775 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1776 | // extend goproto.proto.test.TestAllExtensions { optional sint64 optional_sint64_extension = 6; } |
| 1777 | E_OptionalSint64Extension = &xxx_File_test_test_proto_extDescs[5] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1778 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1779 | // extend goproto.proto.test.TestAllExtensions { optional fixed32 optional_fixed32_extension = 7; } |
| 1780 | E_OptionalFixed32Extension = &xxx_File_test_test_proto_extDescs[6] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1781 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1782 | // extend goproto.proto.test.TestAllExtensions { optional fixed64 optional_fixed64_extension = 8; } |
| 1783 | E_OptionalFixed64Extension = &xxx_File_test_test_proto_extDescs[7] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1784 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1785 | // extend goproto.proto.test.TestAllExtensions { optional sfixed32 optional_sfixed32_extension = 9; } |
| 1786 | E_OptionalSfixed32Extension = &xxx_File_test_test_proto_extDescs[8] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1787 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1788 | // extend goproto.proto.test.TestAllExtensions { optional sfixed64 optional_sfixed64_extension = 10; } |
| 1789 | E_OptionalSfixed64Extension = &xxx_File_test_test_proto_extDescs[9] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1790 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1791 | // extend goproto.proto.test.TestAllExtensions { optional float optional_float_extension = 11; } |
| 1792 | E_OptionalFloatExtension = &xxx_File_test_test_proto_extDescs[10] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1793 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1794 | // extend goproto.proto.test.TestAllExtensions { optional double optional_double_extension = 12; } |
| 1795 | E_OptionalDoubleExtension = &xxx_File_test_test_proto_extDescs[11] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1796 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1797 | // extend goproto.proto.test.TestAllExtensions { optional bool optional_bool_extension = 13; } |
| 1798 | E_OptionalBoolExtension = &xxx_File_test_test_proto_extDescs[12] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1799 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1800 | // extend goproto.proto.test.TestAllExtensions { optional string optional_string_extension = 14; } |
| 1801 | E_OptionalStringExtension = &xxx_File_test_test_proto_extDescs[13] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1802 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1803 | // extend goproto.proto.test.TestAllExtensions { optional bytes optional_bytes_extension = 15; } |
| 1804 | E_OptionalBytesExtension = &xxx_File_test_test_proto_extDescs[14] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1805 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1806 | // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.OptionalGroup_extension optionalgroup_extension = 16; } |
| 1807 | E_OptionalgroupExtension = &xxx_File_test_test_proto_extDescs[15] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1808 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1809 | // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.TestAllTypes.NestedMessage optional_nested_message_extension = 18; } |
| 1810 | E_OptionalNestedMessageExtension = &xxx_File_test_test_proto_extDescs[16] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1811 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1812 | // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.TestAllTypes.NestedEnum optional_nested_enum_extension = 21; } |
| 1813 | E_OptionalNestedEnumExtension = &xxx_File_test_test_proto_extDescs[17] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1814 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1815 | // extend goproto.proto.test.TestAllExtensions { repeated int32 repeated_int32_extension = 31; } |
| 1816 | E_RepeatedInt32Extension = &xxx_File_test_test_proto_extDescs[18] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1817 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1818 | // extend goproto.proto.test.TestAllExtensions { repeated int64 repeated_int64_extension = 32; } |
| 1819 | E_RepeatedInt64Extension = &xxx_File_test_test_proto_extDescs[19] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1820 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1821 | // extend goproto.proto.test.TestAllExtensions { repeated uint32 repeated_uint32_extension = 33; } |
| 1822 | E_RepeatedUint32Extension = &xxx_File_test_test_proto_extDescs[20] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1823 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1824 | // extend goproto.proto.test.TestAllExtensions { repeated uint64 repeated_uint64_extension = 34; } |
| 1825 | E_RepeatedUint64Extension = &xxx_File_test_test_proto_extDescs[21] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1826 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1827 | // extend goproto.proto.test.TestAllExtensions { repeated sint32 repeated_sint32_extension = 35; } |
| 1828 | E_RepeatedSint32Extension = &xxx_File_test_test_proto_extDescs[22] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1829 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1830 | // extend goproto.proto.test.TestAllExtensions { repeated sint64 repeated_sint64_extension = 36; } |
| 1831 | E_RepeatedSint64Extension = &xxx_File_test_test_proto_extDescs[23] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1832 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1833 | // extend goproto.proto.test.TestAllExtensions { repeated fixed32 repeated_fixed32_extension = 37; } |
| 1834 | E_RepeatedFixed32Extension = &xxx_File_test_test_proto_extDescs[24] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1835 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1836 | // extend goproto.proto.test.TestAllExtensions { repeated fixed64 repeated_fixed64_extension = 38; } |
| 1837 | E_RepeatedFixed64Extension = &xxx_File_test_test_proto_extDescs[25] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1838 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1839 | // extend goproto.proto.test.TestAllExtensions { repeated sfixed32 repeated_sfixed32_extension = 39; } |
| 1840 | E_RepeatedSfixed32Extension = &xxx_File_test_test_proto_extDescs[26] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1841 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1842 | // extend goproto.proto.test.TestAllExtensions { repeated sfixed64 repeated_sfixed64_extension = 40; } |
| 1843 | E_RepeatedSfixed64Extension = &xxx_File_test_test_proto_extDescs[27] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1844 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1845 | // extend goproto.proto.test.TestAllExtensions { repeated float repeated_float_extension = 41; } |
| 1846 | E_RepeatedFloatExtension = &xxx_File_test_test_proto_extDescs[28] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1847 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1848 | // extend goproto.proto.test.TestAllExtensions { repeated double repeated_double_extension = 42; } |
| 1849 | E_RepeatedDoubleExtension = &xxx_File_test_test_proto_extDescs[29] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1850 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1851 | // extend goproto.proto.test.TestAllExtensions { repeated bool repeated_bool_extension = 43; } |
| 1852 | E_RepeatedBoolExtension = &xxx_File_test_test_proto_extDescs[30] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1853 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1854 | // extend goproto.proto.test.TestAllExtensions { repeated string repeated_string_extension = 44; } |
| 1855 | E_RepeatedStringExtension = &xxx_File_test_test_proto_extDescs[31] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1856 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1857 | // extend goproto.proto.test.TestAllExtensions { repeated bytes repeated_bytes_extension = 45; } |
| 1858 | E_RepeatedBytesExtension = &xxx_File_test_test_proto_extDescs[32] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1859 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1860 | // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.RepeatedGroup_extension repeatedgroup_extension = 46; } |
| 1861 | E_RepeatedgroupExtension = &xxx_File_test_test_proto_extDescs[33] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1862 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1863 | // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.TestAllTypes.NestedMessage repeated_nested_message_extension = 48; } |
| 1864 | E_RepeatedNestedMessageExtension = &xxx_File_test_test_proto_extDescs[34] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1865 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1866 | // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.TestAllTypes.NestedEnum repeated_nested_enum_extension = 51; } |
| 1867 | E_RepeatedNestedEnumExtension = &xxx_File_test_test_proto_extDescs[35] |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 1868 | |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 1869 | // extend goproto.proto.test.TestAllExtensions { optional string nested_string_extension = 1003; } |
| 1870 | E_TestNestedExtension_NestedStringExtension = &xxx_File_test_test_proto_extDescs[36] |
| 1871 | ) |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 1872 | var File_test_test_proto protoreflect.FileDescriptor |
| 1873 | |
| 1874 | var xxx_File_test_test_proto_rawDesc = []byte{ |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 1875 | 0x0a, 0x0f, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, |
| 1876 | 0x6f, 0x12, 0x12, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, |
| 1877 | 0x2e, 0x74, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74, |
| 1878 | 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x16, 0x74, |
| 1879 | 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x2e, |
| 1880 | 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x14, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74, |
| 1881 | 0x5f, 0x77, 0x65, 0x61, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xe4, 0x36, 0x0a, 0x0c, |
| 1882 | 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e, |
| 1883 | 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x01, |
| 1884 | 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6e, |
| 1885 | 0x74, 0x33, 0x32, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, |
| 1886 | 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6f, 0x70, 0x74, |
| 1887 | 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, |
| 1888 | 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x03, 0x20, |
| 1889 | 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, |
| 1890 | 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, |
| 1891 | 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x6f, 0x70, |
| 1892 | 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0f, |
| 1893 | 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, |
| 1894 | 0x05, 0x20, 0x01, 0x28, 0x11, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, |
| 1895 | 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, |
| 1896 | 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x06, 0x20, 0x01, 0x28, 0x12, 0x52, 0x0e, |
| 1897 | 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x29, |
| 1898 | 0x0a, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, |
| 1899 | 0x33, 0x32, 0x18, 0x07, 0x20, 0x01, 0x28, 0x07, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, |
| 1900 | 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x29, 0x0a, 0x10, 0x6f, 0x70, 0x74, |
| 1901 | 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x08, 0x20, |
| 1902 | 0x01, 0x28, 0x06, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x78, |
| 1903 | 0x65, 0x64, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x11, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, |
| 1904 | 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0f, 0x52, |
| 1905 | 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, |
| 1906 | 0x32, 0x12, 0x2b, 0x0a, 0x11, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x66, |
| 1907 | 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x10, 0x52, 0x10, 0x6f, 0x70, |
| 1908 | 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x25, |
| 1909 | 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, |
| 1910 | 0x18, 0x0b, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, |
| 1911 | 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, |
| 1912 | 0x6c, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, |
| 1913 | 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x23, |
| 1914 | 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, |
| 1915 | 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x42, |
| 1916 | 0x6f, 0x6f, 0x6c, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, |
| 1917 | 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x70, |
| 1918 | 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x25, 0x0a, 0x0e, |
| 1919 | 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x0f, |
| 1920 | 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x42, 0x79, |
| 1921 | 0x74, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, |
| 1922 | 0x72, 0x6f, 0x75, 0x70, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1923 | 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 1924 | 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4f, 0x70, 0x74, |
| 1925 | 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, |
| 1926 | 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x66, 0x0a, 0x17, 0x6f, 0x70, 0x74, |
| 1927 | 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, |
| 1928 | 0x73, 0x61, 0x67, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1929 | 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, |
| 1930 | 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 1931 | 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, 0x6f, 0x70, 0x74, 0x69, |
| 1932 | 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, |
| 1933 | 0x65, 0x12, 0x5c, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x6f, |
| 1934 | 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x13, 0x20, |
| 1935 | 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1936 | 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 1937 | 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, |
| 1938 | 0x6c, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, |
| 1939 | 0x59, 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6d, 0x70, 0x6f, |
| 1940 | 0x72, 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, |
| 1941 | 0x32, 0x21, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, |
| 1942 | 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65, 0x73, 0x73, |
| 1943 | 0x61, 0x67, 0x65, 0x52, 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6d, 0x70, |
| 1944 | 0x6f, 0x72, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5d, 0x0a, 0x14, 0x6f, 0x70, |
| 1945 | 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, |
| 1946 | 0x75, 0x6d, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, |
| 1947 | 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, |
| 1948 | 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, |
| 1949 | 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4e, |
| 1950 | 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x53, 0x0a, 0x15, 0x6f, 0x70, 0x74, |
| 1951 | 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x6e, |
| 1952 | 0x75, 0x6d, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, |
| 1953 | 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, |
| 1954 | 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x13, 0x6f, 0x70, 0x74, 0x69, 0x6f, |
| 1955 | 0x6e, 0x61, 0x6c, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x50, |
| 1956 | 0x0a, 0x14, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, |
| 1957 | 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x67, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 1958 | 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 1959 | 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x6f, 0x70, |
| 1960 | 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45, 0x6e, 0x75, 0x6d, |
| 1961 | 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, |
| 1962 | 0x33, 0x32, 0x18, 0x1f, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, |
| 1963 | 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, |
| 1964 | 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x20, 0x20, 0x03, 0x28, 0x03, 0x52, |
| 1965 | 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27, |
| 1966 | 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, |
| 1967 | 0x32, 0x18, 0x21, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, |
| 1968 | 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, |
| 1969 | 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x22, 0x20, 0x03, 0x28, 0x04, |
| 1970 | 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, |
| 1971 | 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, |
| 1972 | 0x74, 0x33, 0x32, 0x18, 0x23, 0x20, 0x03, 0x28, 0x11, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, |
| 1973 | 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, |
| 1974 | 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x24, 0x20, 0x03, |
| 1975 | 0x28, 0x12, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, |
| 1976 | 0x36, 0x34, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, |
| 1977 | 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x25, 0x20, 0x03, 0x28, 0x07, 0x52, 0x0f, 0x72, 0x65, |
| 1978 | 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x29, 0x0a, |
| 1979 | 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, |
| 1980 | 0x34, 0x18, 0x26, 0x20, 0x03, 0x28, 0x06, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, |
| 1981 | 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65, 0x70, 0x65, |
| 1982 | 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x27, 0x20, |
| 1983 | 0x03, 0x28, 0x0f, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x66, 0x69, |
| 1984 | 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, |
| 1985 | 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x28, 0x20, 0x03, 0x28, 0x10, |
| 1986 | 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, |
| 1987 | 0x36, 0x34, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, |
| 1988 | 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x29, 0x20, 0x03, 0x28, 0x02, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, |
| 1989 | 0x61, 0x74, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, |
| 1990 | 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x2a, 0x20, 0x03, |
| 1991 | 0x28, 0x01, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, |
| 1992 | 0x6c, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, |
| 1993 | 0x6f, 0x6f, 0x6c, 0x18, 0x2b, 0x20, 0x03, 0x28, 0x08, 0x52, 0x0c, 0x72, 0x65, 0x70, 0x65, 0x61, |
| 1994 | 0x74, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, |
| 1995 | 0x74, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x2c, 0x20, 0x03, 0x28, 0x09, |
| 1996 | 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, |
| 1997 | 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, |
| 1998 | 0x65, 0x73, 0x18, 0x2d, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, |
| 1999 | 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, |
| 2000 | 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x2e, 0x20, 0x03, 0x28, 0x0a, 0x32, 0x2e, |
| 2001 | 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, |
| 2002 | 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, |
| 2003 | 0x2e, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, |
| 2004 | 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x66, 0x0a, |
| 2005 | 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, |
| 2006 | 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x30, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, |
| 2007 | 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, |
| 2008 | 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, |
| 2009 | 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, |
| 2010 | 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, |
| 2011 | 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5c, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, |
| 2012 | 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, |
| 2013 | 0x65, 0x18, 0x31, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, |
| 2014 | 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, |
| 2015 | 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x16, 0x72, 0x65, 0x70, |
| 2016 | 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, |
| 2017 | 0x61, 0x67, 0x65, 0x12, 0x58, 0x0a, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, |
| 2018 | 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x32, 0x20, |
| 2019 | 0x03, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, |
| 2020 | 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d, |
| 2021 | 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, |
| 2022 | 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5d, 0x0a, |
| 2023 | 0x14, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, |
| 2024 | 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x33, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, |
| 2025 | 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, |
| 2026 | 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, |
| 2027 | 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, |
| 2028 | 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x53, 0x0a, 0x15, |
| 2029 | 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, |
| 2030 | 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x34, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, |
| 2031 | 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, |
| 2032 | 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x13, 0x72, 0x65, |
| 2033 | 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, |
| 2034 | 0x6d, 0x12, 0x4f, 0x0a, 0x13, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6d, |
| 2035 | 0x70, 0x6f, 0x72, 0x74, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x35, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x1e, |
| 2036 | 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, |
| 2037 | 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, |
| 2038 | 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x6e, |
| 2039 | 0x75, 0x6d, 0x12, 0x5b, 0x0a, 0x0f, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, |
| 2040 | 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x38, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2041 | 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, |
| 2042 | 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2043 | 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, |
| 2044 | 0x52, 0x0d, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, |
| 2045 | 0x5b, 0x0a, 0x0f, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x69, 0x6e, 0x74, |
| 2046 | 0x36, 0x34, 0x18, 0x39, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2047 | 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2048 | 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, |
| 2049 | 0x74, 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x6d, |
| 2050 | 0x61, 0x70, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x61, 0x0a, 0x11, |
| 2051 | 0x6d, 0x61, 0x70, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, |
| 2052 | 0x32, 0x18, 0x3a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, |
| 2053 | 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, |
| 2054 | 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x55, 0x69, 0x6e, |
| 2055 | 0x74, 0x33, 0x32, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, |
| 2056 | 0x6d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, |
| 2057 | 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x75, 0x69, |
| 2058 | 0x6e, 0x74, 0x36, 0x34, 0x18, 0x3b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, |
| 2059 | 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, |
| 2060 | 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, |
| 2061 | 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, |
| 2062 | 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x55, 0x69, 0x6e, 0x74, |
| 2063 | 0x36, 0x34, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, |
| 2064 | 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x3c, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, |
| 2065 | 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, |
| 2066 | 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, |
| 2067 | 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, |
| 2068 | 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x53, |
| 2069 | 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x69, 0x6e, |
| 2070 | 0x74, 0x36, 0x34, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x3d, 0x20, 0x03, 0x28, 0x0b, |
| 2071 | 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, |
| 2072 | 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, |
| 2073 | 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x53, 0x69, 0x6e, 0x74, |
| 2074 | 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, |
| 2075 | 0x36, 0x34, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x67, 0x0a, 0x13, 0x6d, 0x61, 0x70, 0x5f, |
| 2076 | 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, |
| 2077 | 0x3e, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, |
Damien Neil | 8012b44 | 2019-01-18 09:32:24 -0800 | [diff] [blame] | 2078 | 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2079 | 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, |
| 2080 | 0x33, 0x32, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, |
| 2081 | 0x6d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, |
| 2082 | 0x32, 0x12, 0x67, 0x0a, 0x13, 0x6d, 0x61, 0x70, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, |
| 2083 | 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x3f, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2084 | 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, |
| 2085 | 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2086 | 0x2e, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x46, 0x69, 0x78, 0x65, 0x64, |
| 2087 | 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, 0x6d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, |
| 2088 | 0x64, 0x36, 0x34, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x6d, 0x0a, 0x15, 0x6d, 0x61, |
| 2089 | 0x70, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, |
| 2090 | 0x64, 0x33, 0x32, 0x18, 0x40, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70, 0x72, |
| 2091 | 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, |
| 2092 | 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2093 | 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2094 | 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, |
| 2095 | 0x32, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x6d, 0x0a, 0x15, 0x6d, 0x61, 0x70, |
| 2096 | 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, |
| 2097 | 0x36, 0x34, 0x18, 0x41, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, |
| 2098 | 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, |
| 2099 | 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x66, |
| 2100 | 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x6e, |
| 2101 | 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, |
| 2102 | 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x5b, 0x0a, 0x0f, 0x6d, 0x61, 0x70, 0x5f, |
| 2103 | 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x42, 0x20, 0x03, 0x28, |
| 2104 | 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, |
| 2105 | 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, |
| 2106 | 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x6c, 0x6f, 0x61, |
| 2107 | 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, |
| 2108 | 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x5e, 0x0a, 0x10, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, |
| 2109 | 0x33, 0x32, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x43, 0x20, 0x03, 0x28, 0x0b, 0x32, |
| 2110 | 0x34, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, |
| 2111 | 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, |
| 2112 | 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, |
| 2113 | 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x44, |
| 2114 | 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x55, 0x0a, 0x0d, 0x6d, 0x61, 0x70, 0x5f, 0x62, 0x6f, 0x6f, |
| 2115 | 0x6c, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x44, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, |
| 2116 | 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, |
| 2117 | 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, |
| 2118 | 0x61, 0x70, 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, |
| 2119 | 0x0b, 0x6d, 0x61, 0x70, 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x61, 0x0a, 0x11, |
| 2120 | 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, |
| 2121 | 0x67, 0x18, 0x45, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, |
| 2122 | 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, |
| 2123 | 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, |
| 2124 | 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, |
| 2125 | 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, |
| 2126 | 0x5e, 0x0a, 0x10, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x62, 0x79, |
| 2127 | 0x74, 0x65, 0x73, 0x18, 0x46, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x70, 0x72, |
| 2128 | 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, |
| 2129 | 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, |
| 2130 | 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, |
| 2131 | 0x0e, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, |
| 2132 | 0x77, 0x0a, 0x19, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x6e, 0x65, |
| 2133 | 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x47, 0x20, 0x03, |
| 2134 | 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, |
| 2135 | 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, |
| 2136 | 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, |
| 2137 | 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, |
| 2138 | 0x52, 0x16, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, |
| 2139 | 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x6e, 0x0a, 0x16, 0x6d, 0x61, 0x70, 0x5f, |
| 2140 | 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, |
| 2141 | 0x75, 0x6d, 0x18, 0x49, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, |
| 2142 | 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, |
| 2143 | 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x74, |
| 2144 | 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x6e, |
| 2145 | 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, |
| 2146 | 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x27, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, |
| 2147 | 0x75, 0x6c, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x51, 0x20, 0x01, 0x28, 0x05, 0x3a, |
| 2148 | 0x02, 0x38, 0x31, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x33, |
| 2149 | 0x32, 0x12, 0x27, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69, 0x6e, 0x74, |
| 2150 | 0x36, 0x34, 0x18, 0x52, 0x20, 0x01, 0x28, 0x03, 0x3a, 0x02, 0x38, 0x32, 0x52, 0x0c, 0x64, 0x65, |
| 2151 | 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x0e, 0x64, 0x65, |
| 2152 | 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x53, 0x20, 0x01, |
| 2153 | 0x28, 0x0d, 0x3a, 0x02, 0x38, 0x33, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x55, |
| 2154 | 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x29, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, |
| 2155 | 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x54, 0x20, 0x01, 0x28, 0x04, 0x3a, 0x02, 0x38, |
| 2156 | 0x34, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, |
| 2157 | 0x12, 0x2a, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x69, 0x6e, 0x74, |
| 2158 | 0x33, 0x32, 0x18, 0x55, 0x20, 0x01, 0x28, 0x11, 0x3a, 0x03, 0x2d, 0x38, 0x35, 0x52, 0x0d, 0x64, |
| 2159 | 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x29, 0x0a, 0x0e, |
| 2160 | 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x56, |
| 2161 | 0x20, 0x01, 0x28, 0x12, 0x3a, 0x02, 0x38, 0x36, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, |
| 2162 | 0x74, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, |
| 2163 | 0x6c, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x57, 0x20, 0x01, 0x28, 0x07, |
| 2164 | 0x3a, 0x02, 0x38, 0x37, 0x52, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x69, 0x78, |
| 2165 | 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, |
| 2166 | 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x58, 0x20, 0x01, 0x28, 0x06, 0x3a, 0x02, 0x38, |
| 2167 | 0x38, 0x52, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, |
| 2168 | 0x34, 0x12, 0x2d, 0x0a, 0x10, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x66, 0x69, |
| 2169 | 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x59, 0x20, 0x01, 0x28, 0x0f, 0x3a, 0x02, 0x38, 0x39, 0x52, |
| 2170 | 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, |
| 2171 | 0x12, 0x2e, 0x0a, 0x10, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, |
| 2172 | 0x65, 0x64, 0x36, 0x34, 0x18, 0x50, 0x20, 0x01, 0x28, 0x10, 0x3a, 0x03, 0x2d, 0x39, 0x30, 0x52, |
| 2173 | 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, |
| 2174 | 0x12, 0x29, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x61, |
| 2175 | 0x74, 0x18, 0x5b, 0x20, 0x01, 0x28, 0x02, 0x3a, 0x04, 0x39, 0x31, 0x2e, 0x35, 0x52, 0x0c, 0x64, |
| 2176 | 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x2c, 0x0a, 0x0e, 0x64, |
| 2177 | 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x5c, 0x20, |
| 2178 | 0x01, 0x28, 0x01, 0x3a, 0x05, 0x39, 0x32, 0x30, 0x30, 0x30, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, |
| 2179 | 0x75, 0x6c, 0x74, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x27, 0x0a, 0x0c, 0x64, 0x65, 0x66, |
| 2180 | 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x5d, 0x20, 0x01, 0x28, 0x08, 0x3a, |
| 2181 | 0x04, 0x74, 0x72, 0x75, 0x65, 0x52, 0x0b, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x42, 0x6f, |
| 2182 | 0x6f, 0x6c, 0x12, 0x2c, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, |
| 2183 | 0x72, 0x69, 0x6e, 0x67, 0x18, 0x5e, 0x20, 0x01, 0x28, 0x09, 0x3a, 0x05, 0x68, 0x65, 0x6c, 0x6c, |
| 2184 | 0x6f, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, |
| 2185 | 0x12, 0x2a, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x62, 0x79, 0x74, 0x65, |
| 2186 | 0x73, 0x18, 0x5f, 0x20, 0x01, 0x28, 0x0c, 0x3a, 0x05, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x52, 0x0c, |
| 2187 | 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x60, 0x0a, 0x13, |
| 2188 | 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, |
| 2189 | 0x6e, 0x75, 0x6d, 0x18, 0x60, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, |
| 2190 | 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, |
| 2191 | 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, |
| 2192 | 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x3a, 0x03, 0x42, 0x41, 0x52, 0x52, 0x11, 0x64, 0x65, 0x66, |
| 2193 | 0x61, 0x75, 0x6c, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x5e, |
| 2194 | 0x0a, 0x14, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, |
| 2195 | 0x6e, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x61, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, |
| 2196 | 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, |
| 2197 | 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x3a, 0x0b, 0x46, |
| 2198 | 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x42, 0x41, 0x52, 0x52, 0x12, 0x64, 0x65, 0x66, 0x61, |
| 2199 | 0x75, 0x6c, 0x74, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x23, |
| 2200 | 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x6f, |
| 2201 | 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x55, 0x69, 0x6e, |
| 2202 | 0x74, 0x33, 0x32, 0x12, 0x62, 0x0a, 0x14, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x6e, 0x65, 0x73, |
| 2203 | 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x70, 0x20, 0x01, 0x28, |
| 2204 | 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, |
| 2205 | 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, |
| 2206 | 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, |
| 2207 | 0x65, 0x48, 0x00, 0x52, 0x12, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, |
| 2208 | 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, |
| 2209 | 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x71, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, |
| 2210 | 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x21, 0x0a, 0x0b, |
| 2211 | 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x72, 0x20, 0x01, 0x28, |
| 2212 | 0x0c, 0x48, 0x00, 0x52, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, |
| 2213 | 0x1f, 0x0a, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x73, 0x20, |
| 2214 | 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x09, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x42, 0x6f, 0x6f, 0x6c, |
| 2215 | 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, |
| 2216 | 0x18, 0x74, 0x20, 0x01, 0x28, 0x04, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x55, |
| 2217 | 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x21, 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x66, |
| 2218 | 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x75, 0x20, 0x01, 0x28, 0x02, 0x48, 0x00, 0x52, 0x0a, 0x6f, 0x6e, |
| 2219 | 0x65, 0x6f, 0x66, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, |
| 2220 | 0x66, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x76, 0x20, 0x01, 0x28, 0x01, 0x48, 0x00, |
| 2221 | 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x4c, 0x0a, |
| 2222 | 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x77, 0x20, 0x01, 0x28, |
| 2223 | 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, |
| 2224 | 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, |
| 2225 | 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x48, 0x00, |
| 2226 | 0x52, 0x09, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x45, 0x6e, 0x75, 0x6d, 0x1a, 0x61, 0x0a, 0x0d, 0x4e, |
| 2227 | 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x0c, 0x0a, 0x01, |
| 2228 | 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x12, 0x42, 0x0a, 0x0b, 0x63, 0x6f, |
| 2229 | 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, |
| 2230 | 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, |
| 2231 | 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, |
| 2232 | 0x73, 0x52, 0x0b, 0x63, 0x6f, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x1a, 0x1d, |
| 2233 | 0x0a, 0x0d, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, |
| 2234 | 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x1a, 0x1d, 0x0a, |
| 2235 | 0x0d, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x0c, |
| 2236 | 0x0a, 0x01, 0x61, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x1a, 0x40, 0x0a, 0x12, |
| 2237 | 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, |
| 2238 | 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, |
| 2239 | 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, |
| 2240 | 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x40, |
| 2241 | 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2242 | 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2243 | 0x03, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, |
| 2244 | 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, |
| 2245 | 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x69, 0x6e, |
| 2246 | 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, |
| 2247 | 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, |
| 2248 | 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, |
| 2249 | 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x36, |
| 2250 | 0x34, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, |
| 2251 | 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, |
| 2252 | 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, |
| 2253 | 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x53, |
| 2254 | 0x69, 0x6e, 0x74, 0x33, 0x32, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, |
| 2255 | 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x11, 0x52, 0x03, 0x6b, |
| 2256 | 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, |
| 2257 | 0x11, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, |
| 2258 | 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, |
| 2259 | 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, |
| 2260 | 0x12, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, |
| 2261 | 0x02, 0x20, 0x01, 0x28, 0x12, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, |
| 2262 | 0x1a, 0x44, 0x0a, 0x16, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x46, 0x69, |
| 2263 | 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, |
| 2264 | 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x07, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, |
| 2265 | 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x07, 0x52, 0x05, 0x76, 0x61, 0x6c, |
| 2266 | 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x44, 0x0a, 0x16, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, |
| 2267 | 0x65, 0x64, 0x36, 0x34, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, |
| 2268 | 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x06, 0x52, 0x03, 0x6b, |
| 2269 | 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, |
| 2270 | 0x06, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x46, 0x0a, 0x18, |
| 2271 | 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x53, 0x66, 0x69, 0x78, 0x65, |
| 2272 | 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, |
| 2273 | 0x01, 0x20, 0x01, 0x28, 0x0f, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, |
| 2274 | 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0f, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, |
| 2275 | 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x46, 0x0a, 0x18, 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, |
| 2276 | 0x64, 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, |
| 2277 | 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x10, 0x52, 0x03, 0x6b, |
| 2278 | 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, |
| 2279 | 0x10, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x40, 0x0a, 0x12, |
| 2280 | 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x6e, 0x74, |
| 2281 | 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, |
| 2282 | 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, |
| 2283 | 0x01, 0x28, 0x02, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x41, |
| 2284 | 0x0a, 0x13, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2285 | 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2286 | 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, |
| 2287 | 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, |
| 2288 | 0x01, 0x1a, 0x3e, 0x0a, 0x10, 0x4d, 0x61, 0x70, 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, |
| 2289 | 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, |
| 2290 | 0x28, 0x08, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, |
| 2291 | 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, |
| 2292 | 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x53, 0x74, |
| 2293 | 0x72, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, |
| 2294 | 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, |
| 2295 | 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, |
| 2296 | 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x41, 0x0a, 0x13, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, |
| 2297 | 0x6e, 0x67, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, |
| 2298 | 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, |
| 2299 | 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x76, |
| 2300 | 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x79, 0x0a, 0x1b, 0x4d, 0x61, 0x70, 0x53, |
| 2301 | 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, |
| 2302 | 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, |
| 2303 | 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x05, 0x76, 0x61, 0x6c, |
| 2304 | 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, |
| 2305 | 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, |
| 2306 | 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, |
| 2307 | 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, |
| 2308 | 0x02, 0x38, 0x01, 0x1a, 0x73, 0x0a, 0x18, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, |
| 2309 | 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, |
| 2310 | 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, |
| 2311 | 0x79, 0x12, 0x41, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, |
| 2312 | 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, |
| 2313 | 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, |
| 2314 | 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x05, 0x76, |
| 2315 | 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x39, 0x0a, 0x0a, 0x4e, 0x65, 0x73, 0x74, |
| 2316 | 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x07, 0x0a, 0x03, 0x46, 0x4f, 0x4f, 0x10, 0x00, 0x12, |
| 2317 | 0x07, 0x0a, 0x03, 0x42, 0x41, 0x52, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x42, 0x41, 0x5a, 0x10, |
| 2318 | 0x02, 0x12, 0x10, 0x0a, 0x03, 0x4e, 0x45, 0x47, 0x10, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, |
| 2319 | 0xff, 0xff, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x66, 0x69, 0x65, |
| 2320 | 0x6c, 0x64, 0x22, 0xc4, 0x01, 0x0a, 0x15, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, |
| 2321 | 0x63, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x2d, 0x0a, 0x10, |
| 2322 | 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, |
| 2323 | 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x42, 0x02, 0x18, 0x01, 0x52, 0x0f, 0x64, 0x65, 0x70, 0x72, |
| 2324 | 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x3a, 0x0a, 0x16, 0x64, |
| 2325 | 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, |
| 2326 | 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x42, 0x02, 0x18, 0x01, 0x48, |
| 2327 | 0x00, 0x52, 0x14, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4f, 0x6e, 0x65, |
| 2328 | 0x6f, 0x66, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x22, 0x28, 0x0a, 0x0e, 0x44, 0x65, 0x70, 0x72, 0x65, |
| 2329 | 0x63, 0x61, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x12, 0x0a, 0x0a, 0x44, 0x45, 0x50, |
| 2330 | 0x52, 0x45, 0x43, 0x41, 0x54, 0x45, 0x44, 0x10, 0x00, 0x1a, 0x02, 0x08, 0x01, 0x1a, 0x02, 0x18, |
| 2331 | 0x01, 0x3a, 0x02, 0x18, 0x01, 0x42, 0x12, 0x0a, 0x10, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, |
| 2332 | 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x22, 0x2c, 0x0a, 0x0e, 0x46, 0x6f, 0x72, |
| 2333 | 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x0c, 0x0a, 0x01, 0x63, |
| 2334 | 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x63, 0x12, 0x0c, 0x0a, 0x01, 0x64, 0x18, 0x02, |
| 2335 | 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x64, 0x22, 0x30, 0x0a, 0x12, 0x54, 0x65, 0x73, 0x74, 0x52, |
| 2336 | 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x4a, 0x04, 0x08, |
| 2337 | 0x02, 0x10, 0x03, 0x4a, 0x04, 0x08, 0x0f, 0x10, 0x10, 0x4a, 0x04, 0x08, 0x09, 0x10, 0x0c, 0x52, |
| 2338 | 0x03, 0x62, 0x61, 0x72, 0x52, 0x03, 0x62, 0x61, 0x7a, 0x22, 0x1d, 0x0a, 0x11, 0x54, 0x65, 0x73, |
| 2339 | 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2a, 0x08, |
| 2340 | 0x08, 0x01, 0x10, 0x80, 0x80, 0x80, 0x80, 0x02, 0x22, 0x27, 0x0a, 0x17, 0x4f, 0x70, 0x74, 0x69, |
| 2341 | 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, |
| 2342 | 0x69, 0x6f, 0x6e, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, |
| 2343 | 0x61, 0x22, 0x27, 0x0a, 0x17, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, |
| 2344 | 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x0c, 0x0a, 0x01, |
| 2345 | 0x61, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x22, 0x75, 0x0a, 0x13, 0x54, 0x65, |
| 2346 | 0x73, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, |
| 2347 | 0x6e, 0x32, 0x5e, 0x0a, 0x17, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x69, |
| 2348 | 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2349 | 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2350 | 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, |
| 2351 | 0x6f, 0x6e, 0x73, 0x18, 0xeb, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x6e, 0x65, 0x73, 0x74, |
| 2352 | 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, |
| 2353 | 0x6e, 0x22, 0x0c, 0x0a, 0x0a, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, |
| 2354 | 0x0d, 0x0a, 0x0b, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2a, 0x40, |
| 2355 | 0x0a, 0x0b, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x0f, 0x0a, |
| 2356 | 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x46, 0x4f, 0x4f, 0x10, 0x04, 0x12, 0x0f, |
| 2357 | 0x0a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x42, 0x41, 0x52, 0x10, 0x05, 0x12, |
| 2358 | 0x0f, 0x0a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x42, 0x41, 0x5a, 0x10, 0x06, |
| 2359 | 0x2a, 0x47, 0x0a, 0x16, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, |
| 2360 | 0x45, 0x6e, 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x11, 0x0a, 0x0d, 0x52, 0x45, |
| 2361 | 0x53, 0x45, 0x52, 0x56, 0x45, 0x44, 0x5f, 0x45, 0x4e, 0x55, 0x4d, 0x10, 0x00, 0x22, 0x04, 0x08, |
| 2362 | 0x02, 0x10, 0x02, 0x22, 0x04, 0x08, 0x0f, 0x10, 0x0f, 0x22, 0x04, 0x08, 0x09, 0x10, 0x0b, 0x2a, |
| 2363 | 0x03, 0x42, 0x41, 0x52, 0x2a, 0x03, 0x42, 0x41, 0x5a, 0x32, 0xa8, 0x01, 0x0a, 0x0b, 0x54, 0x65, |
| 2364 | 0x73, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x46, 0x0a, 0x03, 0x46, 0x6f, 0x6f, |
| 2365 | 0x12, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, |
| 2366 | 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, |
| 2367 | 0x1a, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, |
| 2368 | 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, |
| 2369 | 0x65, 0x12, 0x51, 0x0a, 0x0a, 0x54, 0x65, 0x73, 0x74, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, |
| 2370 | 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, |
| 2371 | 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, |
| 2372 | 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, |
| 2373 | 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, |
| 2374 | 0x28, 0x01, 0x30, 0x01, 0x32, 0x85, 0x01, 0x0a, 0x15, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, |
| 2375 | 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x67, |
| 2376 | 0x0a, 0x0a, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x29, 0x2e, 0x67, |
| 2377 | 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, |
| 2378 | 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, |
| 2379 | 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x29, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, |
| 2380 | 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, |
| 2381 | 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, |
| 2382 | 0x67, 0x65, 0x22, 0x03, 0x88, 0x02, 0x01, 0x1a, 0x03, 0x88, 0x02, 0x01, 0x3a, 0x5f, 0x0a, 0x18, |
| 2383 | 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, |
Damien Neil | 8012b44 | 2019-01-18 09:32:24 -0800 | [diff] [blame] | 2384 | 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, |
| 2385 | 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, |
| 2386 | 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2387 | 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, |
| 2388 | 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, |
| 2389 | 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2390 | 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, |
| 2391 | 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, |
| 2392 | 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2393 | 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, |
| 2394 | 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, |
| 2395 | 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, |
| 2396 | 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, |
| 2397 | 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, |
| 2398 | 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, |
| 2399 | 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, |
| 2400 | 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, |
| 2401 | 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, |
| 2402 | 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2403 | 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, |
| 2404 | 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2405 | 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x6f, 0x70, 0x74, |
| 2406 | 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, |
| 2407 | 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, |
| 2408 | 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, |
Damien Neil | 8012b44 | 2019-01-18 09:32:24 -0800 | [diff] [blame] | 2409 | 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, |
| 2410 | 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2411 | 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x11, 0x52, 0x17, |
| 2412 | 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, |
| 2413 | 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, |
| 2414 | 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, |
| 2415 | 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, |
| 2416 | 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, |
| 2417 | 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, |
| 2418 | 0x12, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x36, |
| 2419 | 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x6f, 0x70, |
| 2420 | 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2421 | 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, |
| 2422 | 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, |
| 2423 | 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2424 | 0x07, 0x20, 0x01, 0x28, 0x07, 0x52, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2425 | 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2426 | 0x63, 0x0a, 0x1a, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, |
| 2427 | 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, |
| 2428 | 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, |
| 2429 | 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, |
| 2430 | 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x06, 0x52, 0x18, 0x6f, 0x70, 0x74, 0x69, |
| 2431 | 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, |
| 2432 | 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, |
| 2433 | 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, |
| 2434 | 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, |
| 2435 | 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, |
| 2436 | 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0f, |
| 2437 | 0x52, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, |
| 2438 | 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x6f, |
| 2439 | 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, |
| 2440 | 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, |
| 2441 | 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, |
| 2442 | 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, |
| 2443 | 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x10, 0x52, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, |
| 2444 | 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, |
| 2445 | 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, |
| 2446 | 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2447 | 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, |
| 2448 | 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2449 | 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x02, 0x52, 0x16, 0x6f, 0x70, 0x74, |
| 2450 | 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, |
| 2451 | 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, |
| 2452 | 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, |
| 2453 | 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, |
| 2454 | 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, |
| 2455 | 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x17, 0x6f, |
| 2456 | 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74, |
| 2457 | 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5d, 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, |
| 2458 | 0x61, 0x6c, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, |
| 2459 | 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, |
| 2460 | 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, |
| 2461 | 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x15, |
| 2462 | 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65, |
| 2463 | 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, |
| 2464 | 0x6c, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2465 | 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, |
| 2466 | 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2467 | 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, |
| 2468 | 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, |
| 2469 | 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, |
| 2470 | 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2471 | 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, |
| 2472 | 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2473 | 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, |
| 2474 | 0x0c, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x42, 0x79, 0x74, 0x65, 0x73, |
| 2475 | 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x8b, 0x01, 0x0a, 0x17, 0x6f, 0x70, |
| 2476 | 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2477 | 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, |
| 2478 | 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2479 | 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x10, 0x20, 0x01, |
| 2480 | 0x28, 0x0a, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, |
| 2481 | 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, |
| 2482 | 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, |
| 2483 | 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, |
| 2484 | 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0xa0, 0x01, 0x0a, 0x21, 0x6f, 0x70, 0x74, 0x69, |
| 2485 | 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, |
| 2486 | 0x61, 0x67, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, |
| 2487 | 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, |
| 2488 | 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, |
| 2489 | 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, |
| 2490 | 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, |
| 2491 | 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, |
| 2492 | 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x1e, 0x6f, 0x70, 0x74, 0x69, |
| 2493 | 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, |
| 2494 | 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x97, 0x01, 0x0a, 0x1e, 0x6f, |
| 2495 | 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, |
| 2496 | 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, |
| 2497 | 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, |
| 2498 | 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, |
| 2499 | 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, |
| 2500 | 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, |
| 2501 | 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, |
| 2502 | 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x1b, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, |
| 2503 | 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65, 0x6e, |
| 2504 | 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, |
| 2505 | 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, |
| 2506 | 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, |
| 2507 | 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, |
| 2508 | 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x1f, 0x20, 0x03, 0x28, 0x05, 0x52, 0x16, 0x72, |
| 2509 | 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, |
| 2510 | 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, |
| 2511 | 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, |
| 2512 | 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, |
| 2513 | 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, |
| 2514 | 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x20, 0x20, 0x03, 0x28, 0x03, 0x52, 0x16, |
| 2515 | 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, |
| 2516 | 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, |
| 2517 | 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, |
| 2518 | 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, |
| 2519 | 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, |
| 2520 | 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x21, 0x20, 0x03, 0x28, 0x0d, |
| 2521 | 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2522 | 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2523 | 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2524 | 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, |
| 2525 | 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2526 | 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x22, 0x20, |
| 2527 | 0x03, 0x28, 0x04, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, |
| 2528 | 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, |
| 2529 | 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2530 | 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, |
| 2531 | 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, |
| 2532 | 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2533 | 0x18, 0x23, 0x20, 0x03, 0x28, 0x11, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, |
| 2534 | 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, |
| 2535 | 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, |
| 2536 | 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, |
| 2537 | 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, |
| 2538 | 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, |
| 2539 | 0x6f, 0x6e, 0x73, 0x18, 0x24, 0x20, 0x03, 0x28, 0x12, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, |
| 2540 | 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, |
| 2541 | 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, |
| 2542 | 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, |
| 2543 | 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, |
| 2544 | 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, |
| 2545 | 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x25, 0x20, 0x03, 0x28, 0x07, 0x52, 0x18, 0x72, |
| 2546 | 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, |
| 2547 | 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x72, 0x65, 0x70, 0x65, 0x61, |
| 2548 | 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, |
| 2549 | 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, |
| 2550 | 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, |
| 2551 | 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x26, 0x20, 0x03, |
| 2552 | 0x28, 0x06, 0x52, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, |
| 2553 | 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, |
| 2554 | 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, |
| 2555 | 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, |
| 2556 | 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, |
| 2557 | 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, |
| 2558 | 0x6e, 0x73, 0x18, 0x27, 0x20, 0x03, 0x28, 0x0f, 0x52, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, |
| 2559 | 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, |
| 2560 | 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, |
| 2561 | 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, |
| 2562 | 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, |
| 2563 | 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, |
| 2564 | 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x28, 0x20, 0x03, 0x28, 0x10, 0x52, |
| 2565 | 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, |
| 2566 | 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, |
| 2567 | 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78, 0x74, |
| 2568 | 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, |
| 2569 | 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, |
| 2570 | 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x29, 0x20, |
| 2571 | 0x03, 0x28, 0x02, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6c, 0x6f, |
| 2572 | 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, |
| 2573 | 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f, 0x65, |
| 2574 | 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, |
| 2575 | 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, |
| 2576 | 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, |
| 2577 | 0x2a, 0x20, 0x03, 0x28, 0x01, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x44, |
| 2578 | 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5d, |
| 2579 | 0x0a, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, |
| 2580 | 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, |
| 2581 | 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, |
| 2582 | 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, |
| 2583 | 0x18, 0x2b, 0x20, 0x03, 0x28, 0x08, 0x52, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, |
| 2584 | 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, |
| 2585 | 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, |
| 2586 | 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, |
| 2587 | 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, |
| 2588 | 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, |
| 2589 | 0x73, 0x18, 0x2c, 0x20, 0x03, 0x28, 0x09, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, |
| 2590 | 0x64, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, |
| 2591 | 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, |
| 2592 | 0x65, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, |
| 2593 | 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, |
| 2594 | 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, |
| 2595 | 0x6f, 0x6e, 0x73, 0x18, 0x2d, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, |
| 2596 | 0x74, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, |
| 2597 | 0x6e, 0x3a, 0x8b, 0x01, 0x0a, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, |
| 2598 | 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, |
| 2599 | 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, |
| 2600 | 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, |
| 2601 | 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2e, 0x20, 0x03, 0x28, 0x0a, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, |
| 2602 | 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, |
| 2603 | 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, |
| 2604 | 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, |
| 2605 | 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, |
| 2606 | 0xa0, 0x01, 0x0a, 0x21, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, |
| 2607 | 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, |
| 2608 | 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, |
| 2609 | 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, |
| 2610 | 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x30, 0x20, 0x03, |
| 2611 | 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, |
| 2612 | 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, |
| 2613 | 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, |
| 2614 | 0x67, 0x65, 0x52, 0x1e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, |
| 2615 | 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, |
| 2616 | 0x6f, 0x6e, 0x3a, 0x97, 0x01, 0x0a, 0x1e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, |
| 2617 | 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x78, 0x74, 0x65, |
| 2618 | 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, |
| 2619 | 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, |
| 2620 | 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x33, 0x20, 0x03, |
| 2621 | 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, |
| 2622 | 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, |
| 2623 | 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, |
| 2624 | 0x1b, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, |
| 2625 | 0x6e, 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x38, 0x5a, 0x36, |
| 2626 | 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x6f, 0x6c, 0x61, 0x6e, |
| 2627 | 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x76, 0x32, 0x2f, 0x69, 0x6e, |
| 2628 | 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x70, 0x72, 0x6f, 0x74, 0x6f, |
| 2629 | 0x73, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x50, 0x01, 0x58, 0x02, |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 2630 | } |
| 2631 | |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 2632 | var ( |
| 2633 | xxx_File_test_test_proto_rawDesc_once sync.Once |
| 2634 | xxx_File_test_test_proto_rawDesc_data = xxx_File_test_test_proto_rawDesc |
| 2635 | ) |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 2636 | |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 2637 | func xxx_File_test_test_proto_rawDescGZIP() []byte { |
| 2638 | xxx_File_test_test_proto_rawDesc_once.Do(func() { |
| 2639 | xxx_File_test_test_proto_rawDesc_data = protoimpl.X.CompressGZIP(xxx_File_test_test_proto_rawDesc_data) |
| 2640 | }) |
| 2641 | return xxx_File_test_test_proto_rawDesc_data |
| 2642 | } |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 2643 | |
Damien Neil | 6bb8dec | 2019-03-01 13:22:30 -0800 | [diff] [blame] | 2644 | var xxx_File_test_test_proto_enumTypes = make([]protoreflect.EnumType, 4) |
| 2645 | var xxx_File_test_test_proto_messageTypes = make([]protoimpl.MessageType, 30) |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2646 | var xxx_File_test_test_proto_goTypes = []interface{}{ |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2647 | (ForeignEnum)(0), // 0: goproto.proto.test.ForeignEnum |
| 2648 | (TestReservedEnumFields)(0), // 1: goproto.proto.test.TestReservedEnumFields |
| 2649 | (TestAllTypes_NestedEnum)(0), // 2: goproto.proto.test.TestAllTypes.NestedEnum |
| 2650 | (TestDeprecatedMessage_DeprecatedEnum)(0), // 3: goproto.proto.test.TestDeprecatedMessage.DeprecatedEnum |
| 2651 | (*TestAllTypes)(nil), // 4: goproto.proto.test.TestAllTypes |
| 2652 | (*TestDeprecatedMessage)(nil), // 5: goproto.proto.test.TestDeprecatedMessage |
| 2653 | (*ForeignMessage)(nil), // 6: goproto.proto.test.ForeignMessage |
| 2654 | (*TestReservedFields)(nil), // 7: goproto.proto.test.TestReservedFields |
| 2655 | (*TestAllExtensions)(nil), // 8: goproto.proto.test.TestAllExtensions |
| 2656 | (*OptionalGroupExtension)(nil), // 9: goproto.proto.test.OptionalGroup_extension |
| 2657 | (*RepeatedGroupExtension)(nil), // 10: goproto.proto.test.RepeatedGroup_extension |
| 2658 | (*TestNestedExtension)(nil), // 11: goproto.proto.test.TestNestedExtension |
| 2659 | (*FooRequest)(nil), // 12: goproto.proto.test.FooRequest |
| 2660 | (*FooResponse)(nil), // 13: goproto.proto.test.FooResponse |
| 2661 | (*TestAllTypes_NestedMessage)(nil), // 14: goproto.proto.test.TestAllTypes.NestedMessage |
| 2662 | (*TestAllTypes_OptionalGroup)(nil), // 15: goproto.proto.test.TestAllTypes.OptionalGroup |
| 2663 | (*TestAllTypes_RepeatedGroup)(nil), // 16: goproto.proto.test.TestAllTypes.RepeatedGroup |
| 2664 | nil, // 17: goproto.proto.test.TestAllTypes.MapInt32Int32Entry |
| 2665 | nil, // 18: goproto.proto.test.TestAllTypes.MapInt64Int64Entry |
| 2666 | nil, // 19: goproto.proto.test.TestAllTypes.MapUint32Uint32Entry |
| 2667 | nil, // 20: goproto.proto.test.TestAllTypes.MapUint64Uint64Entry |
| 2668 | nil, // 21: goproto.proto.test.TestAllTypes.MapSint32Sint32Entry |
| 2669 | nil, // 22: goproto.proto.test.TestAllTypes.MapSint64Sint64Entry |
| 2670 | nil, // 23: goproto.proto.test.TestAllTypes.MapFixed32Fixed32Entry |
| 2671 | nil, // 24: goproto.proto.test.TestAllTypes.MapFixed64Fixed64Entry |
| 2672 | nil, // 25: goproto.proto.test.TestAllTypes.MapSfixed32Sfixed32Entry |
| 2673 | nil, // 26: goproto.proto.test.TestAllTypes.MapSfixed64Sfixed64Entry |
| 2674 | nil, // 27: goproto.proto.test.TestAllTypes.MapInt32FloatEntry |
| 2675 | nil, // 28: goproto.proto.test.TestAllTypes.MapInt32DoubleEntry |
| 2676 | nil, // 29: goproto.proto.test.TestAllTypes.MapBoolBoolEntry |
| 2677 | nil, // 30: goproto.proto.test.TestAllTypes.MapStringStringEntry |
| 2678 | nil, // 31: goproto.proto.test.TestAllTypes.MapStringBytesEntry |
| 2679 | nil, // 32: goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry |
| 2680 | nil, // 33: goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry |
| 2681 | (*ImportMessage)(nil), // 34: goproto.proto.test.ImportMessage |
| 2682 | (ImportEnum)(0), // 35: goproto.proto.test.ImportEnum |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 2683 | } |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2684 | var xxx_File_test_test_proto_depIdxs = []int32{ |
Damien Neil | e475eaa | 2019-01-26 14:24:59 -0800 | [diff] [blame] | 2685 | 8, // goproto.proto.test.optional_int32_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2686 | 8, // goproto.proto.test.optional_int64_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2687 | 8, // goproto.proto.test.optional_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2688 | 8, // goproto.proto.test.optional_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2689 | 8, // goproto.proto.test.optional_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2690 | 8, // goproto.proto.test.optional_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2691 | 8, // goproto.proto.test.optional_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2692 | 8, // goproto.proto.test.optional_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2693 | 8, // goproto.proto.test.optional_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2694 | 8, // goproto.proto.test.optional_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2695 | 8, // goproto.proto.test.optional_float_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2696 | 8, // goproto.proto.test.optional_double_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2697 | 8, // goproto.proto.test.optional_bool_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2698 | 8, // goproto.proto.test.optional_string_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2699 | 8, // goproto.proto.test.optional_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2700 | 8, // goproto.proto.test.optionalgroup_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2701 | 8, // goproto.proto.test.optional_nested_message_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2702 | 8, // goproto.proto.test.optional_nested_enum_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2703 | 8, // goproto.proto.test.repeated_int32_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2704 | 8, // goproto.proto.test.repeated_int64_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2705 | 8, // goproto.proto.test.repeated_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2706 | 8, // goproto.proto.test.repeated_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2707 | 8, // goproto.proto.test.repeated_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2708 | 8, // goproto.proto.test.repeated_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2709 | 8, // goproto.proto.test.repeated_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2710 | 8, // goproto.proto.test.repeated_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2711 | 8, // goproto.proto.test.repeated_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2712 | 8, // goproto.proto.test.repeated_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2713 | 8, // goproto.proto.test.repeated_float_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2714 | 8, // goproto.proto.test.repeated_double_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2715 | 8, // goproto.proto.test.repeated_bool_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2716 | 8, // goproto.proto.test.repeated_string_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2717 | 8, // goproto.proto.test.repeated_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2718 | 8, // goproto.proto.test.repeatedgroup_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2719 | 8, // goproto.proto.test.repeated_nested_message_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2720 | 8, // goproto.proto.test.repeated_nested_enum_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2721 | 8, // goproto.proto.test.TestNestedExtension.nested_string_extension:extendee -> goproto.proto.test.TestAllExtensions |
| 2722 | 15, // goproto.proto.test.TestAllTypes.optionalgroup:type_name -> goproto.proto.test.TestAllTypes.OptionalGroup |
| 2723 | 14, // goproto.proto.test.TestAllTypes.optional_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage |
| 2724 | 6, // goproto.proto.test.TestAllTypes.optional_foreign_message:type_name -> goproto.proto.test.ForeignMessage |
| 2725 | 34, // goproto.proto.test.TestAllTypes.optional_import_message:type_name -> goproto.proto.test.ImportMessage |
| 2726 | 2, // goproto.proto.test.TestAllTypes.optional_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum |
| 2727 | 0, // goproto.proto.test.TestAllTypes.optional_foreign_enum:type_name -> goproto.proto.test.ForeignEnum |
| 2728 | 35, // goproto.proto.test.TestAllTypes.optional_import_enum:type_name -> goproto.proto.test.ImportEnum |
| 2729 | 16, // goproto.proto.test.TestAllTypes.repeatedgroup:type_name -> goproto.proto.test.TestAllTypes.RepeatedGroup |
| 2730 | 14, // goproto.proto.test.TestAllTypes.repeated_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage |
| 2731 | 6, // goproto.proto.test.TestAllTypes.repeated_foreign_message:type_name -> goproto.proto.test.ForeignMessage |
| 2732 | 34, // goproto.proto.test.TestAllTypes.repeated_importmessage:type_name -> goproto.proto.test.ImportMessage |
| 2733 | 2, // goproto.proto.test.TestAllTypes.repeated_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum |
| 2734 | 0, // goproto.proto.test.TestAllTypes.repeated_foreign_enum:type_name -> goproto.proto.test.ForeignEnum |
| 2735 | 35, // goproto.proto.test.TestAllTypes.repeated_importenum:type_name -> goproto.proto.test.ImportEnum |
| 2736 | 17, // goproto.proto.test.TestAllTypes.map_int32_int32:type_name -> goproto.proto.test.TestAllTypes.MapInt32Int32Entry |
| 2737 | 18, // goproto.proto.test.TestAllTypes.map_int64_int64:type_name -> goproto.proto.test.TestAllTypes.MapInt64Int64Entry |
| 2738 | 19, // goproto.proto.test.TestAllTypes.map_uint32_uint32:type_name -> goproto.proto.test.TestAllTypes.MapUint32Uint32Entry |
| 2739 | 20, // goproto.proto.test.TestAllTypes.map_uint64_uint64:type_name -> goproto.proto.test.TestAllTypes.MapUint64Uint64Entry |
| 2740 | 21, // goproto.proto.test.TestAllTypes.map_sint32_sint32:type_name -> goproto.proto.test.TestAllTypes.MapSint32Sint32Entry |
| 2741 | 22, // goproto.proto.test.TestAllTypes.map_sint64_sint64:type_name -> goproto.proto.test.TestAllTypes.MapSint64Sint64Entry |
| 2742 | 23, // goproto.proto.test.TestAllTypes.map_fixed32_fixed32:type_name -> goproto.proto.test.TestAllTypes.MapFixed32Fixed32Entry |
| 2743 | 24, // goproto.proto.test.TestAllTypes.map_fixed64_fixed64:type_name -> goproto.proto.test.TestAllTypes.MapFixed64Fixed64Entry |
| 2744 | 25, // goproto.proto.test.TestAllTypes.map_sfixed32_sfixed32:type_name -> goproto.proto.test.TestAllTypes.MapSfixed32Sfixed32Entry |
| 2745 | 26, // goproto.proto.test.TestAllTypes.map_sfixed64_sfixed64:type_name -> goproto.proto.test.TestAllTypes.MapSfixed64Sfixed64Entry |
| 2746 | 27, // goproto.proto.test.TestAllTypes.map_int32_float:type_name -> goproto.proto.test.TestAllTypes.MapInt32FloatEntry |
| 2747 | 28, // goproto.proto.test.TestAllTypes.map_int32_double:type_name -> goproto.proto.test.TestAllTypes.MapInt32DoubleEntry |
| 2748 | 29, // goproto.proto.test.TestAllTypes.map_bool_bool:type_name -> goproto.proto.test.TestAllTypes.MapBoolBoolEntry |
| 2749 | 30, // goproto.proto.test.TestAllTypes.map_string_string:type_name -> goproto.proto.test.TestAllTypes.MapStringStringEntry |
| 2750 | 31, // goproto.proto.test.TestAllTypes.map_string_bytes:type_name -> goproto.proto.test.TestAllTypes.MapStringBytesEntry |
| 2751 | 32, // goproto.proto.test.TestAllTypes.map_string_nested_message:type_name -> goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry |
| 2752 | 33, // goproto.proto.test.TestAllTypes.map_string_nested_enum:type_name -> goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry |
| 2753 | 2, // goproto.proto.test.TestAllTypes.default_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum |
| 2754 | 0, // goproto.proto.test.TestAllTypes.default_foreign_enum:type_name -> goproto.proto.test.ForeignEnum |
| 2755 | 14, // goproto.proto.test.TestAllTypes.oneof_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage |
| 2756 | 2, // goproto.proto.test.TestAllTypes.oneof_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum |
| 2757 | 4, // goproto.proto.test.TestAllTypes.NestedMessage.corecursive:type_name -> goproto.proto.test.TestAllTypes |
| 2758 | 14, // goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry.value:type_name -> goproto.proto.test.TestAllTypes.NestedMessage |
| 2759 | 2, // goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry.value:type_name -> goproto.proto.test.TestAllTypes.NestedEnum |
| 2760 | 9, // goproto.proto.test.optionalgroup_extension:type_name -> goproto.proto.test.OptionalGroup_extension |
| 2761 | 14, // goproto.proto.test.optional_nested_message_extension:type_name -> goproto.proto.test.TestAllTypes.NestedMessage |
| 2762 | 2, // goproto.proto.test.optional_nested_enum_extension:type_name -> goproto.proto.test.TestAllTypes.NestedEnum |
| 2763 | 10, // goproto.proto.test.repeatedgroup_extension:type_name -> goproto.proto.test.RepeatedGroup_extension |
| 2764 | 14, // goproto.proto.test.repeated_nested_message_extension:type_name -> goproto.proto.test.TestAllTypes.NestedMessage |
| 2765 | 2, // goproto.proto.test.repeated_nested_enum_extension:type_name -> goproto.proto.test.TestAllTypes.NestedEnum |
| 2766 | 12, // goproto.proto.test.TestService.Foo:input_type -> goproto.proto.test.FooRequest |
| 2767 | 13, // goproto.proto.test.TestService.Foo:output_type -> goproto.proto.test.FooResponse |
| 2768 | 12, // goproto.proto.test.TestService.TestStream:input_type -> goproto.proto.test.FooRequest |
| 2769 | 13, // goproto.proto.test.TestService.TestStream:output_type -> goproto.proto.test.FooResponse |
| 2770 | 5, // goproto.proto.test.TestDeprecatedService.Deprecated:input_type -> goproto.proto.test.TestDeprecatedMessage |
| 2771 | 5, // goproto.proto.test.TestDeprecatedService.Deprecated:output_type -> goproto.proto.test.TestDeprecatedMessage |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 2772 | } |
Damien Neil | 8012b44 | 2019-01-18 09:32:24 -0800 | [diff] [blame] | 2773 | |
Damien Neil | 0fc2245 | 2019-03-08 17:18:11 -0800 | [diff] [blame] | 2774 | func init() { xxx_File_test_test_proto_init() } |
| 2775 | func xxx_File_test_test_proto_init() { |
| 2776 | if File_test_test_proto != nil { |
| 2777 | return |
| 2778 | } |
| 2779 | xxx_File_test_test_import_proto_init() |
| 2780 | xxx_File_test_test_public_proto_init() |
| 2781 | xxx_File_test_test_weak_proto_init() |
Damien Neil | 6bb8dec | 2019-03-01 13:22:30 -0800 | [diff] [blame] | 2782 | extensionTypes := make([]protoreflect.ExtensionType, 37) |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2783 | File_test_test_proto = protoimpl.FileBuilder{ |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 2784 | RawDescriptor: xxx_File_test_test_proto_rawDesc, |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2785 | GoTypes: xxx_File_test_test_proto_goTypes, |
| 2786 | DependencyIndexes: xxx_File_test_test_proto_depIdxs, |
Joe Tsai | afb455e | 2019-03-14 16:08:22 -0700 | [diff] [blame] | 2787 | LegacyExtensions: xxx_File_test_test_proto_extDescs, |
Damien Neil | 6bb8dec | 2019-03-01 13:22:30 -0800 | [diff] [blame] | 2788 | EnumOutputTypes: xxx_File_test_test_proto_enumTypes, |
Joe Tsai | 35ec98f | 2019-03-25 14:41:32 -0700 | [diff] [blame] | 2789 | MessageOutputTypes: xxx_File_test_test_proto_messageTypes, |
Damien Neil | 6bb8dec | 2019-03-01 13:22:30 -0800 | [diff] [blame] | 2790 | ExtensionOutputTypes: extensionTypes, |
Joe Tsai | 35ec98f | 2019-03-25 14:41:32 -0700 | [diff] [blame] | 2791 | FilesRegistry: protoregistry.GlobalFiles, |
| 2792 | TypesRegistry: protoregistry.GlobalTypes, |
Damien Neil | 8012b44 | 2019-01-18 09:32:24 -0800 | [diff] [blame] | 2793 | }.Init() |
Joe Tsai | 5d72cc2 | 2019-03-28 01:13:26 -0700 | [diff] [blame] | 2794 | xxx_File_test_test_proto_rawDesc = nil |
Joe Tsai | 1905843 | 2019-02-27 21:46:29 -0800 | [diff] [blame] | 2795 | xxx_File_test_test_proto_goTypes = nil |
| 2796 | xxx_File_test_test_proto_depIdxs = nil |
Damien Neil | ba23aa5 | 2018-12-07 14:38:17 -0800 | [diff] [blame] | 2797 | } |