go.ligato.io/vpp-agent/v3@v3.5.0/proto/ligato/vpp/l3/arp.pb.go (about) 1 // Code generated by protoc-gen-go. DO NOT EDIT. 2 // versions: 3 // protoc-gen-go v1.27.1 4 // protoc v3.17.3 5 // source: ligato/vpp/l3/arp.proto 6 7 package vpp_l3 8 9 import ( 10 _ "go.ligato.io/vpp-agent/v3/proto/ligato" 11 protoreflect "google.golang.org/protobuf/reflect/protoreflect" 12 protoimpl "google.golang.org/protobuf/runtime/protoimpl" 13 reflect "reflect" 14 sync "sync" 15 ) 16 17 const ( 18 // Verify that this generated code is sufficiently up-to-date. 19 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) 20 // Verify that runtime/protoimpl is sufficiently up-to-date. 21 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) 22 ) 23 24 type ARPEntry struct { 25 state protoimpl.MessageState 26 sizeCache protoimpl.SizeCache 27 unknownFields protoimpl.UnknownFields 28 29 Interface string `protobuf:"bytes,1,opt,name=interface,proto3" json:"interface,omitempty"` 30 IpAddress string `protobuf:"bytes,2,opt,name=ip_address,json=ipAddress,proto3" json:"ip_address,omitempty"` 31 PhysAddress string `protobuf:"bytes,3,opt,name=phys_address,json=physAddress,proto3" json:"phys_address,omitempty"` 32 Static bool `protobuf:"varint,4,opt,name=static,proto3" json:"static,omitempty"` 33 } 34 35 func (x *ARPEntry) Reset() { 36 *x = ARPEntry{} 37 if protoimpl.UnsafeEnabled { 38 mi := &file_ligato_vpp_l3_arp_proto_msgTypes[0] 39 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 40 ms.StoreMessageInfo(mi) 41 } 42 } 43 44 func (x *ARPEntry) String() string { 45 return protoimpl.X.MessageStringOf(x) 46 } 47 48 func (*ARPEntry) ProtoMessage() {} 49 50 func (x *ARPEntry) ProtoReflect() protoreflect.Message { 51 mi := &file_ligato_vpp_l3_arp_proto_msgTypes[0] 52 if protoimpl.UnsafeEnabled && x != nil { 53 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 54 if ms.LoadMessageInfo() == nil { 55 ms.StoreMessageInfo(mi) 56 } 57 return ms 58 } 59 return mi.MessageOf(x) 60 } 61 62 // Deprecated: Use ARPEntry.ProtoReflect.Descriptor instead. 63 func (*ARPEntry) Descriptor() ([]byte, []int) { 64 return file_ligato_vpp_l3_arp_proto_rawDescGZIP(), []int{0} 65 } 66 67 func (x *ARPEntry) GetInterface() string { 68 if x != nil { 69 return x.Interface 70 } 71 return "" 72 } 73 74 func (x *ARPEntry) GetIpAddress() string { 75 if x != nil { 76 return x.IpAddress 77 } 78 return "" 79 } 80 81 func (x *ARPEntry) GetPhysAddress() string { 82 if x != nil { 83 return x.PhysAddress 84 } 85 return "" 86 } 87 88 func (x *ARPEntry) GetStatic() bool { 89 if x != nil { 90 return x.Static 91 } 92 return false 93 } 94 95 var File_ligato_vpp_l3_arp_proto protoreflect.FileDescriptor 96 97 var file_ligato_vpp_l3_arp_proto_rawDesc = []byte{ 98 0x0a, 0x17, 0x6c, 0x69, 0x67, 0x61, 0x74, 0x6f, 0x2f, 0x76, 0x70, 0x70, 0x2f, 0x6c, 0x33, 0x2f, 99 0x61, 0x72, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0d, 0x6c, 0x69, 0x67, 0x61, 0x74, 100 0x6f, 0x2e, 0x76, 0x70, 0x70, 0x2e, 0x6c, 0x33, 0x1a, 0x18, 0x6c, 0x69, 0x67, 0x61, 0x74, 0x6f, 101 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 102 0x74, 0x6f, 0x22, 0x89, 0x01, 0x0a, 0x08, 0x41, 0x52, 0x50, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 103 0x1c, 0x0a, 0x09, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 104 0x28, 0x09, 0x52, 0x09, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x12, 0x24, 0x0a, 105 0x0a, 0x69, 0x70, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 106 0x09, 0x42, 0x05, 0x82, 0x7d, 0x02, 0x08, 0x01, 0x52, 0x09, 0x69, 0x70, 0x41, 0x64, 0x64, 0x72, 107 0x65, 0x73, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x68, 0x79, 0x73, 0x5f, 0x61, 0x64, 0x64, 0x72, 108 0x65, 0x73, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x68, 0x79, 0x73, 0x41, 109 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x69, 0x63, 110 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x69, 0x63, 0x42, 0x36, 111 0x5a, 0x34, 0x67, 0x6f, 0x2e, 0x6c, 0x69, 0x67, 0x61, 0x74, 0x6f, 0x2e, 0x69, 0x6f, 0x2f, 0x76, 112 0x70, 0x70, 0x2d, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x2f, 0x76, 0x33, 0x2f, 0x70, 0x72, 0x6f, 0x74, 113 0x6f, 0x2f, 0x6c, 0x69, 0x67, 0x61, 0x74, 0x6f, 0x2f, 0x76, 0x70, 0x70, 0x2f, 0x6c, 0x33, 0x3b, 114 0x76, 0x70, 0x70, 0x5f, 0x6c, 0x33, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 115 } 116 117 var ( 118 file_ligato_vpp_l3_arp_proto_rawDescOnce sync.Once 119 file_ligato_vpp_l3_arp_proto_rawDescData = file_ligato_vpp_l3_arp_proto_rawDesc 120 ) 121 122 func file_ligato_vpp_l3_arp_proto_rawDescGZIP() []byte { 123 file_ligato_vpp_l3_arp_proto_rawDescOnce.Do(func() { 124 file_ligato_vpp_l3_arp_proto_rawDescData = protoimpl.X.CompressGZIP(file_ligato_vpp_l3_arp_proto_rawDescData) 125 }) 126 return file_ligato_vpp_l3_arp_proto_rawDescData 127 } 128 129 var file_ligato_vpp_l3_arp_proto_msgTypes = make([]protoimpl.MessageInfo, 1) 130 var file_ligato_vpp_l3_arp_proto_goTypes = []interface{}{ 131 (*ARPEntry)(nil), // 0: ligato.vpp.l3.ARPEntry 132 } 133 var file_ligato_vpp_l3_arp_proto_depIdxs = []int32{ 134 0, // [0:0] is the sub-list for method output_type 135 0, // [0:0] is the sub-list for method input_type 136 0, // [0:0] is the sub-list for extension type_name 137 0, // [0:0] is the sub-list for extension extendee 138 0, // [0:0] is the sub-list for field type_name 139 } 140 141 func init() { file_ligato_vpp_l3_arp_proto_init() } 142 func file_ligato_vpp_l3_arp_proto_init() { 143 if File_ligato_vpp_l3_arp_proto != nil { 144 return 145 } 146 if !protoimpl.UnsafeEnabled { 147 file_ligato_vpp_l3_arp_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { 148 switch v := v.(*ARPEntry); i { 149 case 0: 150 return &v.state 151 case 1: 152 return &v.sizeCache 153 case 2: 154 return &v.unknownFields 155 default: 156 return nil 157 } 158 } 159 } 160 type x struct{} 161 out := protoimpl.TypeBuilder{ 162 File: protoimpl.DescBuilder{ 163 GoPackagePath: reflect.TypeOf(x{}).PkgPath(), 164 RawDescriptor: file_ligato_vpp_l3_arp_proto_rawDesc, 165 NumEnums: 0, 166 NumMessages: 1, 167 NumExtensions: 0, 168 NumServices: 0, 169 }, 170 GoTypes: file_ligato_vpp_l3_arp_proto_goTypes, 171 DependencyIndexes: file_ligato_vpp_l3_arp_proto_depIdxs, 172 MessageInfos: file_ligato_vpp_l3_arp_proto_msgTypes, 173 }.Build() 174 File_ligato_vpp_l3_arp_proto = out.File 175 file_ligato_vpp_l3_arp_proto_rawDesc = nil 176 file_ligato_vpp_l3_arp_proto_goTypes = nil 177 file_ligato_vpp_l3_arp_proto_depIdxs = nil 178 }