From 09f09ff61491b75757adfc9a42ccf312efeb1064 Mon Sep 17 00:00:00 2001 From: rewenset Date: Fri, 6 Sep 2019 11:17:05 +0300 Subject: [PATCH] Move inline comments to new lines --- api/models/vpp/interfaces/interface.pb.go | 386 ++++++++++++---------- api/models/vpp/interfaces/interface.proto | 145 +++++--- 2 files changed, 306 insertions(+), 225 deletions(-) diff --git a/api/models/vpp/interfaces/interface.pb.go b/api/models/vpp/interfaces/interface.pb.go index 2e0168944a..90f2c2d93c 100644 --- a/api/models/vpp/interfaces/interface.pb.go +++ b/api/models/vpp/interfaces/interface.pb.go @@ -112,6 +112,7 @@ func (Interface_RxMode_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor_1ac7cab935c1dc4d, []int{0, 1, 0} } +// VLAN tag rewrite rule applied for given tag for sub-interface type SubInterface_TagRewriteOptions int32 const ( @@ -289,9 +290,12 @@ type GreLink_Type int32 const ( GreLink_UNKNOWN GreLink_Type = 0 - GreLink_L3 GreLink_Type = 1 - GreLink_TEB GreLink_Type = 2 - GreLink_ERSPAN GreLink_Type = 3 + // L3 GRE (i.e. this tunnel is in L3 mode) + GreLink_L3 GreLink_Type = 1 + // Transparent Ethernet Bridging - the tunnel is in L2 mode + GreLink_TEB GreLink_Type = 2 + // ERSPAN - the tunnel is for port mirror SPAN output + GreLink_ERSPAN GreLink_Type = 3 ) var GreLink_Type_name = map[int32]string{ @@ -886,11 +890,11 @@ func (*Interface_RxMode) XXX_MessageName() string { } type Interface_RxPlacement struct { - // select from interval <0, number-of-queues) + // Select from interval <0, number-of-queues) Queue uint32 `protobuf:"varint,1,opt,name=queue,proto3" json:"queue,omitempty"` - // select from interval <0, number-of-workers) + // Select from interval <0, number-of-workers) Worker uint32 `protobuf:"varint,2,opt,name=worker,proto3" json:"worker,omitempty"` - // let the main thread to process the given queue + // Let the main thread to process the given queue // - if enabled, value of is ignored MainThread bool `protobuf:"varint,3,opt,name=main_thread,json=mainThread,proto3" json:"main_thread,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -949,15 +953,20 @@ func (*Interface_RxPlacement) XXX_MessageName() string { // SubInterface defines configuration for interface type: SUB_INTERFACE type SubInterface struct { - ParentName string `protobuf:"bytes,1,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"` - SubId uint32 `protobuf:"varint,2,opt,name=sub_id,json=subId,proto3" json:"sub_id,omitempty"` - TagRwOption SubInterface_TagRewriteOptions `protobuf:"varint,3,opt,name=tag_rw_option,json=tagRwOption,proto3,enum=vpp.interfaces.SubInterface_TagRewriteOptions" json:"tag_rw_option,omitempty"` - PushDot1Q bool `protobuf:"varint,4,opt,name=push_dot1q,json=pushDot1q,proto3" json:"push_dot1q,omitempty"` - Tag1 uint32 `protobuf:"varint,5,opt,name=tag1,proto3" json:"tag1,omitempty"` - Tag2 uint32 `protobuf:"varint,6,opt,name=tag2,proto3" json:"tag2,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + // Name of the parent (super) interface + ParentName string `protobuf:"bytes,1,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"` + // SubInterface ID, used as VLAN + SubId uint32 `protobuf:"varint,2,opt,name=sub_id,json=subId,proto3" json:"sub_id,omitempty"` + TagRwOption SubInterface_TagRewriteOptions `protobuf:"varint,3,opt,name=tag_rw_option,json=tagRwOption,proto3,enum=vpp.interfaces.SubInterface_TagRewriteOptions" json:"tag_rw_option,omitempty"` + // Set ether-type of the first tag to dot1q if true, dot1ad otherwise + PushDot1Q bool `protobuf:"varint,4,opt,name=push_dot1q,json=pushDot1q,proto3" json:"push_dot1q,omitempty"` + // First tag (required for PUSH1 and any TRANSLATE) + Tag1 uint32 `protobuf:"varint,5,opt,name=tag1,proto3" json:"tag1,omitempty"` + // Second tag (required for PUSH2 and any TRANSLATE) + Tag2 uint32 `protobuf:"varint,6,opt,name=tag2,proto3" json:"tag2,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *SubInterface) Reset() { *m = SubInterface{} } @@ -1032,18 +1041,24 @@ func (*SubInterface) XXX_MessageName() string { // MemifLink defines configuration for interface type: MEMIF type MemifLink struct { - Mode MemifLink_MemifMode `protobuf:"varint,1,opt,name=mode,proto3,enum=vpp.interfaces.MemifLink_MemifMode" json:"mode,omitempty"` - Master bool `protobuf:"varint,2,opt,name=master,proto3" json:"master,omitempty"` - Id uint32 `protobuf:"varint,3,opt,name=id,proto3" json:"id,omitempty"` - SocketFilename string `protobuf:"bytes,4,opt,name=socket_filename,json=socketFilename,proto3" json:"socket_filename,omitempty"` - Secret string `protobuf:"bytes,5,opt,name=secret,proto3" json:"secret,omitempty"` - RingSize uint32 `protobuf:"varint,6,opt,name=ring_size,json=ringSize,proto3" json:"ring_size,omitempty"` - BufferSize uint32 `protobuf:"varint,7,opt,name=buffer_size,json=bufferSize,proto3" json:"buffer_size,omitempty"` - RxQueues uint32 `protobuf:"varint,8,opt,name=rx_queues,json=rxQueues,proto3" json:"rx_queues,omitempty"` - TxQueues uint32 `protobuf:"varint,9,opt,name=tx_queues,json=txQueues,proto3" json:"tx_queues,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Mode MemifLink_MemifMode `protobuf:"varint,1,opt,name=mode,proto3,enum=vpp.interfaces.MemifLink_MemifMode" json:"mode,omitempty"` + Master bool `protobuf:"varint,2,opt,name=master,proto3" json:"master,omitempty"` + // 32bit integer used to authenticate and match opposite sides of the connection + Id uint32 `protobuf:"varint,3,opt,name=id,proto3" json:"id,omitempty"` + // Filename of the socket used for connection establishment + SocketFilename string `protobuf:"bytes,4,opt,name=socket_filename,json=socketFilename,proto3" json:"socket_filename,omitempty"` + Secret string `protobuf:"bytes,5,opt,name=secret,proto3" json:"secret,omitempty"` + // The number of entries of RX/TX rings + RingSize uint32 `protobuf:"varint,6,opt,name=ring_size,json=ringSize,proto3" json:"ring_size,omitempty"` + // Size of the buffer allocated for each ring entry + BufferSize uint32 `protobuf:"varint,7,opt,name=buffer_size,json=bufferSize,proto3" json:"buffer_size,omitempty"` + // Number of rx queues (only valid for slave) + RxQueues uint32 `protobuf:"varint,8,opt,name=rx_queues,json=rxQueues,proto3" json:"rx_queues,omitempty"` + // Number of tx queues (only valid for slave) + TxQueues uint32 `protobuf:"varint,9,opt,name=tx_queues,json=txQueues,proto3" json:"tx_queues,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *MemifLink) Reset() { *m = MemifLink{} } @@ -1139,10 +1154,15 @@ func (*MemifLink) XXX_MessageName() string { // VxlanLink defines configuration for interface type: VXLAN_TUNNEL type VxlanLink struct { - SrcAddress string `protobuf:"bytes,1,opt,name=src_address,json=srcAddress,proto3" json:"src_address,omitempty"` - DstAddress string `protobuf:"bytes,2,opt,name=dst_address,json=dstAddress,proto3" json:"dst_address,omitempty"` - Vni uint32 `protobuf:"varint,3,opt,name=vni,proto3" json:"vni,omitempty"` - Multicast string `protobuf:"bytes,4,opt,name=multicast,proto3" json:"multicast,omitempty"` + // SrcAddress is source VTEP address + SrcAddress string `protobuf:"bytes,1,opt,name=src_address,json=srcAddress,proto3" json:"src_address,omitempty"` + // DstAddress is destination VTEP address + DstAddress string `protobuf:"bytes,2,opt,name=dst_address,json=dstAddress,proto3" json:"dst_address,omitempty"` + // Vni stands for VXLAN Network Identifier + Vni uint32 `protobuf:"varint,3,opt,name=vni,proto3" json:"vni,omitempty"` + // Multicast defines name of multicast interface + Multicast string `protobuf:"bytes,4,opt,name=multicast,proto3" json:"multicast,omitempty"` + // Gpe (Generic Protocol Extension) allows encapsulating not only Ethernet frame payload. Gpe *VxlanLink_Gpe `protobuf:"bytes,5,opt,name=gpe,proto3" json:"gpe,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -1213,8 +1233,9 @@ func (*VxlanLink) XXX_MessageName() string { } type VxlanLink_Gpe struct { - DecapVrfId uint32 `protobuf:"varint,4,opt,name=decap_vrf_id,json=decapVrfId,proto3" json:"decap_vrf_id,omitempty"` - Protocol VxlanLink_Gpe_Protocol `protobuf:"varint,5,opt,name=protocol,proto3,enum=vpp.interfaces.VxlanLink_Gpe_Protocol" json:"protocol,omitempty"` + DecapVrfId uint32 `protobuf:"varint,1,opt,name=decap_vrf_id,json=decapVrfId,proto3" json:"decap_vrf_id,omitempty"` + // Protocol defines encapsulated protocol + Protocol VxlanLink_Gpe_Protocol `protobuf:"varint,2,opt,name=protocol,proto3,enum=vpp.interfaces.VxlanLink_Gpe_Protocol" json:"protocol,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1264,6 +1285,7 @@ func (*VxlanLink_Gpe) XXX_MessageName() string { // AfpacketLink defines configuration for interface type: AF_PACKET type AfpacketLink struct { + // Name of the host interface to bind to (mandatory) HostIfName string `protobuf:"bytes,1,opt,name=host_if_name,json=hostIfName,proto3" json:"host_if_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -1307,10 +1329,20 @@ func (*AfpacketLink) XXX_MessageName() string { // TapLink defines configuration for interface type: TAP type TapLink struct { - Version uint32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"` - HostIfName string `protobuf:"bytes,2,opt,name=host_if_name,json=hostIfName,proto3" json:"host_if_name,omitempty"` - ToMicroservice string `protobuf:"bytes,3,opt,name=to_microservice,json=toMicroservice,proto3" json:"to_microservice,omitempty"` - RxRingSize uint32 `protobuf:"varint,4,opt,name=rx_ring_size,json=rxRingSize,proto3" json:"rx_ring_size,omitempty"` + // 1 / unset = use the original TAP interface; 2 = use a fast virtio-based TAP + Version uint32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"` + // Name of the TAP interface in the host OS; + // if empty, it will be auto-generated (suitable for combination with TAP_TO_VPP + // interface from Linux ifplugin, because then this name is only temporary anyway) + HostIfName string `protobuf:"bytes,2,opt,name=host_if_name,json=hostIfName,proto3" json:"host_if_name,omitempty"` + // If TAP connects VPP with microservice, fill this parameter with the target + // microservice name - should match with the namespace reference of the associated + // TAP_TO_VPP interface (it is still moved to the namespace by Linux-ifplugin but + // VPP-ifplugin needs to be aware of this dependency) + ToMicroservice string `protobuf:"bytes,3,opt,name=to_microservice,json=toMicroservice,proto3" json:"to_microservice,omitempty"` + // Rx ring buffer size; must be power of 2; default is 256; only for TAP v.2 + RxRingSize uint32 `protobuf:"varint,4,opt,name=rx_ring_size,json=rxRingSize,proto3" json:"rx_ring_size,omitempty"` + // Tx ring buffer size; must be power of 2; default is 256; only for TAP v.2 TxRingSize uint32 `protobuf:"varint,5,opt,name=tx_ring_size,json=txRingSize,proto3" json:"tx_ring_size,omitempty"` EnableGso bool `protobuf:"varint,6,opt,name=enable_gso,json=enableGso,proto3" json:"enable_gso,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -1390,22 +1422,29 @@ func (*TapLink) XXX_MessageName() string { // IPSecLink defines configuration for interface type: IPSEC_TUNNEL type IPSecLink struct { - Esn bool `protobuf:"varint,2,opt,name=esn,proto3" json:"esn,omitempty"` - AntiReplay bool `protobuf:"varint,3,opt,name=anti_replay,json=antiReplay,proto3" json:"anti_replay,omitempty"` - LocalIp string `protobuf:"bytes,4,opt,name=local_ip,json=localIp,proto3" json:"local_ip,omitempty"` - RemoteIp string `protobuf:"bytes,5,opt,name=remote_ip,json=remoteIp,proto3" json:"remote_ip,omitempty"` - LocalSpi uint32 `protobuf:"varint,6,opt,name=local_spi,json=localSpi,proto3" json:"local_spi,omitempty"` - RemoteSpi uint32 `protobuf:"varint,7,opt,name=remote_spi,json=remoteSpi,proto3" json:"remote_spi,omitempty"` - CryptoAlg ipsec.CryptoAlg `protobuf:"varint,8,opt,name=crypto_alg,json=cryptoAlg,proto3,enum=vpp.ipsec.CryptoAlg" json:"crypto_alg,omitempty"` - LocalCryptoKey string `protobuf:"bytes,9,opt,name=local_crypto_key,json=localCryptoKey,proto3" json:"local_crypto_key,omitempty"` - RemoteCryptoKey string `protobuf:"bytes,10,opt,name=remote_crypto_key,json=remoteCryptoKey,proto3" json:"remote_crypto_key,omitempty"` - IntegAlg ipsec.IntegAlg `protobuf:"varint,11,opt,name=integ_alg,json=integAlg,proto3,enum=vpp.ipsec.IntegAlg" json:"integ_alg,omitempty"` - LocalIntegKey string `protobuf:"bytes,12,opt,name=local_integ_key,json=localIntegKey,proto3" json:"local_integ_key,omitempty"` - RemoteIntegKey string `protobuf:"bytes,13,opt,name=remote_integ_key,json=remoteIntegKey,proto3" json:"remote_integ_key,omitempty"` - EnableUdpEncap bool `protobuf:"varint,14,opt,name=enable_udp_encap,json=enableUdpEncap,proto3" json:"enable_udp_encap,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + // Extended sequence number + Esn bool `protobuf:"varint,2,opt,name=esn,proto3" json:"esn,omitempty"` + // Anti replay option + AntiReplay bool `protobuf:"varint,3,opt,name=anti_replay,json=antiReplay,proto3" json:"anti_replay,omitempty"` + LocalIp string `protobuf:"bytes,4,opt,name=local_ip,json=localIp,proto3" json:"local_ip,omitempty"` + RemoteIp string `protobuf:"bytes,5,opt,name=remote_ip,json=remoteIp,proto3" json:"remote_ip,omitempty"` + // Local security parameter index + LocalSpi uint32 `protobuf:"varint,6,opt,name=local_spi,json=localSpi,proto3" json:"local_spi,omitempty"` + // Remote security parameter index + RemoteSpi uint32 `protobuf:"varint,7,opt,name=remote_spi,json=remoteSpi,proto3" json:"remote_spi,omitempty"` + // Cryptographic algorithm for encryption + CryptoAlg ipsec.CryptoAlg `protobuf:"varint,8,opt,name=crypto_alg,json=cryptoAlg,proto3,enum=vpp.ipsec.CryptoAlg" json:"crypto_alg,omitempty"` + LocalCryptoKey string `protobuf:"bytes,9,opt,name=local_crypto_key,json=localCryptoKey,proto3" json:"local_crypto_key,omitempty"` + RemoteCryptoKey string `protobuf:"bytes,10,opt,name=remote_crypto_key,json=remoteCryptoKey,proto3" json:"remote_crypto_key,omitempty"` + // Cryptographic algorithm for authentication + IntegAlg ipsec.IntegAlg `protobuf:"varint,11,opt,name=integ_alg,json=integAlg,proto3,enum=vpp.ipsec.IntegAlg" json:"integ_alg,omitempty"` + LocalIntegKey string `protobuf:"bytes,12,opt,name=local_integ_key,json=localIntegKey,proto3" json:"local_integ_key,omitempty"` + RemoteIntegKey string `protobuf:"bytes,13,opt,name=remote_integ_key,json=remoteIntegKey,proto3" json:"remote_integ_key,omitempty"` + // Enable UDP encapsulation + EnableUdpEncap bool `protobuf:"varint,14,opt,name=enable_udp_encap,json=enableUdpEncap,proto3" json:"enable_udp_encap,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *IPSecLink) Reset() { *m = IPSecLink{} } @@ -1527,12 +1566,16 @@ func (*IPSecLink) XXX_MessageName() string { return "vpp.interfaces.IPSecLink" } +// VmxNet3Link defines configuration for interface type: VMXNET3_INTERFACE // PCI address (unsigned 32bit int) is derived from vmxnet3 interface name. It is expected that the interface -//name is in format "vmxnet3-///", where 'd' stands for domain (max ffff), 'b' is bus (max ff), -//'s' is slot (max 1f) and 'f is function' (max 7). All values are base 16 +// name is in format "vmxnet3-///", where 'd' stands for domain (max ffff), 'b' is bus (max ff), +// 's' is slot (max 1f) and 'f is function' (max 7). All values are base 16 type VmxNet3Link struct { - EnableElog bool `protobuf:"varint,2,opt,name=enable_elog,json=enableElog,proto3" json:"enable_elog,omitempty"` - RxqSize uint32 `protobuf:"varint,3,opt,name=rxq_size,json=rxqSize,proto3" json:"rxq_size,omitempty"` + // Turn on elog + EnableElog bool `protobuf:"varint,2,opt,name=enable_elog,json=enableElog,proto3" json:"enable_elog,omitempty"` + // Receive queue size (default is 1024) + RxqSize uint32 `protobuf:"varint,3,opt,name=rxq_size,json=rxqSize,proto3" json:"rxq_size,omitempty"` + // Transmit queue size (default is 1024) TxqSize uint32 `protobuf:"varint,4,opt,name=txq_size,json=txqSize,proto3" json:"txq_size,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -1590,8 +1633,9 @@ func (*VmxNet3Link) XXX_MessageName() string { // BondLink defines configuration for interface type: BOND_INTERFACE type BondLink struct { - Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` - Mode BondLink_Mode `protobuf:"varint,3,opt,name=mode,proto3,enum=vpp.interfaces.BondLink_Mode" json:"mode,omitempty"` + Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` + Mode BondLink_Mode `protobuf:"varint,3,opt,name=mode,proto3,enum=vpp.interfaces.BondLink_Mode" json:"mode,omitempty"` + // Load balance is optional and valid only for XOR and LACP modes Lb BondLink_LoadBalance `protobuf:"varint,4,opt,name=lb,proto3,enum=vpp.interfaces.BondLink_LoadBalance" json:"lb,omitempty"` BondedInterfaces []*BondLink_BondedInterface `protobuf:"bytes,12,rep,name=bonded_interfaces,json=bondedInterfaces,proto3" json:"bonded_interfaces,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -1824,130 +1868,130 @@ var fileDescriptor_1ac7cab935c1dc4d = []byte{ 0x0a, 0x44, 0x41, 0xd0, 0x76, 0x3a, 0x9d, 0xc1, 0x80, 0xc0, 0x12, 0x42, 0x05, 0x02, 0x30, 0x76, 0x49, 0x53, 0x79, 0x89, 0x3e, 0x49, 0xdf, 0x23, 0x17, 0xbd, 0x68, 0xaf, 0x3a, 0xbd, 0xe9, 0x4d, 0x2f, 0x7b, 0xd5, 0xe9, 0x0b, 0x74, 0xf6, 0x03, 0x14, 0x25, 0x4b, 0xee, 0x8d, 0xbd, 0xfb, 0x3b, - 0xe7, 0x77, 0x76, 0xf7, 0xe0, 0x7c, 0x51, 0xf0, 0x74, 0x9e, 0xf8, 0x38, 0x22, 0x47, 0xcb, 0x34, + 0xe7, 0xb7, 0x7b, 0xf6, 0xe0, 0x7c, 0x51, 0xf0, 0x74, 0x9e, 0xf8, 0x38, 0x22, 0x47, 0xcb, 0x34, 0x3d, 0x0a, 0x63, 0x8a, 0xb3, 0x99, 0xeb, 0x61, 0x72, 0xb3, 0x6c, 0xa7, 0x59, 0x42, 0x13, 0xd4, 0x5c, 0xa6, 0x69, 0xfb, 0x46, 0xbe, 0xf7, 0x55, 0x10, 0xd2, 0xcb, 0xc5, 0xb4, 0xed, 0x25, 0xf3, 0xa3, 0x20, 0x09, 0x92, 0x23, 0xae, 0x36, 0x5d, 0xcc, 0xf8, 0x8e, 0x6f, 0xf8, 0x4a, 0xd0, 0xf7, - 0x9e, 0x6c, 0x9e, 0x92, 0x12, 0xec, 0x89, 0x7f, 0x85, 0xb4, 0xf5, 0xb7, 0x3a, 0xd4, 0x06, 0xb9, - 0x6d, 0x84, 0xa0, 0x1c, 0xbb, 0x73, 0xac, 0x15, 0x0e, 0x0a, 0x87, 0x35, 0x8b, 0xaf, 0x51, 0x07, - 0xca, 0xf4, 0x3a, 0xc5, 0x5a, 0xf1, 0xa0, 0x70, 0xd8, 0xec, 0x7c, 0xd6, 0xbe, 0x7d, 0x9b, 0xf6, + 0x9e, 0x6c, 0xde, 0x92, 0x12, 0xec, 0x89, 0x7f, 0x85, 0xb4, 0xf5, 0xb7, 0x3a, 0xd4, 0x06, 0xf9, + 0xd9, 0x08, 0x41, 0x39, 0x76, 0xe7, 0x58, 0x2b, 0x1c, 0x14, 0x0e, 0x6b, 0x16, 0x5f, 0xa3, 0x0e, + 0x94, 0xe9, 0x75, 0x8a, 0xb5, 0xe2, 0x41, 0xe1, 0xb0, 0xd9, 0xf9, 0xac, 0x7d, 0xdb, 0x9a, 0xf6, 0x9a, 0xdc, 0xb6, 0xaf, 0x53, 0x6c, 0x71, 0x5d, 0xa4, 0x41, 0x15, 0xc7, 0xee, 0x34, 0xc2, 0xbe, 0x56, 0x3a, 0x28, 0x1c, 0x2a, 0x56, 0xbe, 0x45, 0x3f, 0x82, 0x9d, 0xf4, 0xf2, 0x9a, 0x38, 0xae, - 0xef, 0x67, 0x98, 0x10, 0xad, 0xcc, 0x4f, 0xaa, 0x33, 0xac, 0x2b, 0x20, 0xa6, 0x12, 0xa6, 0xb9, + 0xef, 0x67, 0x98, 0x10, 0xad, 0xcc, 0x6f, 0xaa, 0x33, 0xac, 0x2b, 0x20, 0xa6, 0x12, 0xa6, 0xb9, 0x02, 0x26, 0xda, 0xf6, 0x41, 0x89, 0xa9, 0x84, 0x69, 0x37, 0x87, 0x90, 0x0a, 0xa5, 0x65, 0x36, 0xd3, 0x2a, 0x07, 0x85, 0xc3, 0x86, 0xc5, 0x96, 0xe8, 0x0b, 0xd8, 0x25, 0x98, 0x3a, 0xfe, 0xa5, - 0x97, 0x3a, 0x5e, 0x14, 0xe2, 0x98, 0x6a, 0x55, 0x7e, 0x72, 0x83, 0x60, 0xda, 0xbf, 0xf4, 0xd2, + 0x97, 0x3a, 0x5e, 0x14, 0xe2, 0x98, 0x6a, 0x55, 0x7e, 0x73, 0x83, 0x60, 0xda, 0xbf, 0xf4, 0xd2, 0x53, 0x0e, 0x32, 0xe6, 0x9c, 0x2e, 0x34, 0x45, 0x30, 0xe7, 0x74, 0x81, 0xfa, 0x00, 0x8b, 0x38, 0x5e, 0xcc, 0xa7, 0x38, 0xc3, 0xbe, 0x56, 0x3b, 0x28, 0x1c, 0xd6, 0x3b, 0x3f, 0x79, 0xf8, 0x95, 0x93, 0xb5, 0xae, 0xb5, 0xc1, 0x43, 0xdf, 0x82, 0x92, 0xad, 0x1c, 0xe6, 0x6a, 0xa2, 0xed, 0x1c, - 0x94, 0x0e, 0xeb, 0x9d, 0x83, 0x87, 0x6d, 0x58, 0xab, 0x8b, 0xc4, 0xc7, 0x56, 0x35, 0xe3, 0xff, - 0x13, 0xf4, 0x02, 0x1a, 0xd9, 0xca, 0x49, 0x23, 0xd7, 0xc3, 0x73, 0x1c, 0x53, 0xa2, 0x35, 0xb8, - 0x85, 0xa7, 0x1f, 0xb2, 0x60, 0xe6, 0xda, 0xd6, 0x4e, 0x76, 0xb3, 0x21, 0xe8, 0x19, 0x94, 0xc8, - 0x62, 0xaa, 0xf9, 0xfc, 0x1d, 0x4f, 0xee, 0x5a, 0x18, 0x2f, 0xa6, 0x6b, 0x23, 0xcf, 0xb7, 0x2c, - 0xa6, 0x8a, 0x8e, 0x61, 0x7b, 0x8e, 0xe7, 0xe1, 0x4c, 0xc3, 0x9c, 0xf3, 0xf8, 0x2e, 0xe7, 0x82, - 0x09, 0x87, 0x61, 0x7c, 0xf5, 0x7c, 0xcb, 0x12, 0x9a, 0xe8, 0x57, 0xa0, 0xb8, 0xb3, 0xd4, 0xf5, - 0xae, 0x30, 0xd5, 0x66, 0xf7, 0x9f, 0xd4, 0x95, 0x72, 0x49, 0x5c, 0xeb, 0xa3, 0x9f, 0x41, 0x89, - 0xba, 0xa9, 0x16, 0x70, 0xda, 0xff, 0xdf, 0xa5, 0xd9, 0x6e, 0x2a, 0x19, 0x4c, 0x8b, 0xdd, 0x6d, - 0xb9, 0x8a, 0xdc, 0x58, 0xbb, 0xbc, 0xff, 0x6e, 0xaf, 0x98, 0x30, 0xbf, 0x1b, 0xd7, 0x64, 0x14, - 0x1e, 0xe0, 0x5a, 0x78, 0x3f, 0x65, 0x60, 0x8e, 0xb1, 0x97, 0x53, 0xb8, 0x26, 0xfa, 0x06, 0x94, - 0xe5, 0x7c, 0xe5, 0xc4, 0x98, 0x9e, 0x68, 0x7f, 0xe0, 0xac, 0x4f, 0xdf, 0x3b, 0x68, 0xbe, 0x32, - 0x30, 0x3d, 0x91, 0xbc, 0xea, 0x52, 0x6c, 0x51, 0x1b, 0xca, 0xd3, 0x24, 0xf6, 0xb5, 0x2b, 0xce, - 0xd2, 0xee, 0xb2, 0x7a, 0x49, 0xec, 0x4b, 0x0a, 0xd7, 0x63, 0x8f, 0x0f, 0x32, 0xac, 0x45, 0xf7, - 0x3f, 0xfe, 0x3c, 0xc3, 0xf9, 0xe3, 0x83, 0x0c, 0xef, 0x7d, 0x03, 0x70, 0x13, 0x6d, 0xe8, 0xa7, - 0xf0, 0x68, 0xad, 0xea, 0xbc, 0x0b, 0xe9, 0xa5, 0x13, 0xa6, 0x32, 0x51, 0x77, 0xd7, 0x82, 0xd7, - 0x21, 0xbd, 0x1c, 0xa4, 0x7b, 0x3f, 0x14, 0xa0, 0x22, 0x82, 0x0c, 0x7d, 0x04, 0xdb, 0x6f, 0x17, - 0x78, 0x21, 0x72, 0xba, 0x61, 0x89, 0x0d, 0xfa, 0x25, 0x94, 0x59, 0xac, 0xca, 0xa4, 0x7e, 0xfa, - 0xbf, 0x42, 0x55, 0xe6, 0x36, 0xa3, 0xb0, 0xf4, 0xf4, 0xf1, 0xcc, 0x5d, 0x44, 0x94, 0x87, 0xbb, - 0x4c, 0xf0, 0xba, 0xc4, 0x98, 0x76, 0xeb, 0x05, 0x94, 0x19, 0x01, 0xd5, 0xa1, 0x3a, 0x31, 0x5e, - 0x1a, 0xa3, 0xd7, 0x86, 0xba, 0xc5, 0x36, 0xe6, 0x68, 0x38, 0x1c, 0x18, 0xe7, 0x6a, 0x01, 0x35, - 0xa0, 0x36, 0x30, 0x6c, 0xdd, 0xb2, 0x26, 0xa6, 0xad, 0x16, 0xd1, 0x0e, 0x28, 0xdd, 0x7e, 0xd7, - 0xb4, 0x07, 0xaf, 0x74, 0xb5, 0xc4, 0x34, 0xfb, 0xfa, 0x59, 0x77, 0x32, 0xb4, 0xd5, 0xf2, 0xde, - 0xef, 0xa1, 0xbe, 0x11, 0xec, 0x0f, 0x3c, 0xe7, 0x13, 0xa8, 0xbc, 0x4b, 0xb2, 0x2b, 0x9c, 0xf1, - 0x07, 0x35, 0x2c, 0xb9, 0x43, 0x9f, 0x43, 0x7d, 0xee, 0x86, 0xb1, 0x43, 0x2f, 0x33, 0xec, 0xe6, - 0xb5, 0x08, 0x18, 0x64, 0x73, 0xa4, 0xf5, 0x97, 0x82, 0xbc, 0x2a, 0x82, 0xe6, 0xc4, 0xe8, 0xeb, - 0x67, 0x03, 0x43, 0xef, 0x3b, 0xf6, 0x77, 0xa6, 0xae, 0x6e, 0xa1, 0x47, 0xd0, 0x18, 0x4f, 0x7a, - 0x0e, 0xbf, 0xe8, 0x59, 0xf7, 0x54, 0x57, 0x0b, 0xe8, 0x63, 0x78, 0x34, 0x1e, 0x9d, 0xd9, 0xaf, + 0x94, 0x0e, 0xeb, 0x9d, 0x83, 0x87, 0xcf, 0xb0, 0x56, 0x17, 0x89, 0x8f, 0xad, 0x6a, 0xc6, 0xff, + 0x27, 0xe8, 0x05, 0x34, 0xb2, 0x95, 0x93, 0x46, 0xae, 0x87, 0xe7, 0x38, 0xa6, 0x44, 0x6b, 0xf0, + 0x13, 0x9e, 0x7e, 0xe8, 0x04, 0x33, 0xd7, 0xb6, 0x76, 0xb2, 0x9b, 0x0d, 0x41, 0xcf, 0xa0, 0x44, + 0x16, 0x53, 0xcd, 0xe7, 0xef, 0x78, 0x72, 0xf7, 0x84, 0xf1, 0x62, 0xba, 0x3e, 0xe4, 0xf9, 0x96, + 0xc5, 0x54, 0xd1, 0x31, 0x6c, 0xcf, 0xf1, 0x3c, 0x9c, 0x69, 0x98, 0x73, 0x1e, 0xdf, 0xe5, 0x5c, + 0x30, 0xe1, 0x30, 0x8c, 0xaf, 0x9e, 0x6f, 0x59, 0x42, 0x13, 0xfd, 0x0a, 0x14, 0x77, 0x96, 0xba, + 0xde, 0x15, 0xa6, 0xda, 0xec, 0xfe, 0x9b, 0xba, 0x52, 0x2e, 0x89, 0x6b, 0x7d, 0xf4, 0x33, 0x28, + 0x51, 0x37, 0xd5, 0x02, 0x4e, 0xfb, 0xff, 0xbb, 0x34, 0xdb, 0x4d, 0x25, 0x83, 0x69, 0x31, 0xdb, + 0x96, 0xab, 0xc8, 0x8d, 0xb5, 0xcb, 0xfb, 0x6d, 0x7b, 0xc5, 0x84, 0xb9, 0x6d, 0x5c, 0x93, 0x51, + 0x78, 0x80, 0x6b, 0xe1, 0xfd, 0x94, 0x81, 0x39, 0xc6, 0x5e, 0x4e, 0xe1, 0x9a, 0xe8, 0x1b, 0x50, + 0x96, 0xf3, 0x95, 0x13, 0x63, 0x7a, 0xa2, 0xfd, 0x81, 0xb3, 0x3e, 0x7d, 0xef, 0xa2, 0xf9, 0xca, + 0xc0, 0xf4, 0x44, 0xf2, 0xaa, 0x4b, 0xb1, 0x45, 0x6d, 0x28, 0x4f, 0x93, 0xd8, 0xd7, 0xae, 0x38, + 0x4b, 0xbb, 0xcb, 0xea, 0x25, 0xb1, 0x2f, 0x29, 0x5c, 0x8f, 0x3d, 0x3e, 0xc8, 0xb0, 0x16, 0xdd, + 0xff, 0xf8, 0xf3, 0x0c, 0xe7, 0x8f, 0x0f, 0x32, 0xbc, 0xf7, 0x0d, 0xc0, 0x4d, 0xb4, 0xa1, 0x9f, + 0xc2, 0xa3, 0xb5, 0xaa, 0xf3, 0x2e, 0xa4, 0x97, 0x4e, 0x98, 0xca, 0x44, 0xdd, 0x5d, 0x0b, 0x5e, + 0x87, 0xf4, 0x72, 0x90, 0xee, 0xfd, 0x50, 0x80, 0x8a, 0x08, 0x32, 0xf4, 0x11, 0x6c, 0xbf, 0x5d, + 0xe0, 0x85, 0xc8, 0xe9, 0x86, 0x25, 0x36, 0xe8, 0x97, 0x50, 0x66, 0xb1, 0x2a, 0x93, 0xfa, 0xe9, + 0xff, 0x0a, 0x55, 0x99, 0xdb, 0x8c, 0xc2, 0xd2, 0xd3, 0xc7, 0x33, 0x77, 0x11, 0x51, 0x1e, 0xee, + 0x32, 0xc1, 0xeb, 0x12, 0x63, 0xda, 0xad, 0x17, 0x50, 0x66, 0x04, 0x54, 0x87, 0xea, 0xc4, 0x78, + 0x69, 0x8c, 0x5e, 0x1b, 0xea, 0x16, 0xdb, 0x98, 0xa3, 0xe1, 0x70, 0x60, 0x9c, 0xab, 0x05, 0xd4, + 0x80, 0xda, 0xc0, 0xb0, 0x75, 0xcb, 0x9a, 0x98, 0xb6, 0x5a, 0x44, 0x3b, 0xa0, 0x74, 0xfb, 0x5d, + 0xd3, 0x1e, 0xbc, 0xd2, 0xd5, 0x12, 0xd3, 0xec, 0xeb, 0x67, 0xdd, 0xc9, 0xd0, 0x56, 0xcb, 0x7b, + 0xbf, 0x87, 0xfa, 0x46, 0xb0, 0x3f, 0xf0, 0x9c, 0x4f, 0xa0, 0xf2, 0x2e, 0xc9, 0xae, 0x70, 0xc6, + 0x1f, 0xd4, 0xb0, 0xe4, 0x0e, 0x7d, 0x0e, 0xf5, 0xb9, 0x1b, 0xc6, 0x0e, 0xbd, 0xcc, 0xb0, 0x9b, + 0xd7, 0x22, 0x60, 0x90, 0xcd, 0x91, 0xd6, 0x5f, 0x0a, 0xd2, 0x54, 0x04, 0xcd, 0x89, 0xd1, 0xd7, + 0xcf, 0x06, 0x86, 0xde, 0x77, 0xec, 0xef, 0x4c, 0x5d, 0xdd, 0x42, 0x8f, 0xa0, 0x31, 0x9e, 0xf4, + 0x1c, 0x6e, 0xe8, 0x59, 0xf7, 0x54, 0x57, 0x0b, 0xe8, 0x63, 0x78, 0x34, 0x1e, 0x9d, 0xd9, 0xaf, 0xbb, 0x96, 0xee, 0x0c, 0x47, 0x23, 0xb3, 0xd7, 0x3d, 0x7d, 0xa9, 0x16, 0x91, 0x02, 0xe5, 0xbe, 0xd9, 0x7f, 0xa9, 0x96, 0x50, 0x0d, 0xb6, 0x2f, 0xf4, 0x8b, 0xc1, 0x99, 0x5a, 0x46, 0x55, 0x28, 0xd9, 0x5d, 0x53, 0xdd, 0x66, 0x8f, 0xed, 0x9e, 0x39, 0x66, 0xf7, 0xf4, 0xa5, 0x6e, 0xab, 0x15, 0xa4, 0xc2, 0xce, 0xab, 0x37, 0xc3, 0xae, 0xe1, 0xd8, 0x13, 0xc3, 0xd0, 0x87, 0x6a, 0x95, 0x21, - 0x03, 0x73, 0xac, 0x9f, 0xe6, 0x88, 0xc2, 0xce, 0x79, 0x75, 0xf1, 0xc6, 0xd0, 0xed, 0x93, 0x8d, - 0xe3, 0x6b, 0xec, 0x96, 0xbd, 0x91, 0xd1, 0xdf, 0xc0, 0x00, 0x35, 0x01, 0xce, 0x2d, 0x3d, 0xa7, - 0xd6, 0x7b, 0x15, 0x28, 0x47, 0x61, 0x7c, 0xd5, 0xfa, 0x4f, 0x11, 0x76, 0x36, 0xd3, 0x9d, 0x39, - 0x23, 0x75, 0x33, 0x1c, 0x53, 0x67, 0xa3, 0xc6, 0x83, 0x80, 0x0c, 0x56, 0xe9, 0x3f, 0x86, 0x0a, - 0x59, 0x4c, 0x9d, 0xd0, 0x97, 0x5e, 0xdc, 0x26, 0x8b, 0xe9, 0xc0, 0x47, 0x16, 0x34, 0xa8, 0x1b, - 0x38, 0xd9, 0x3b, 0x27, 0x49, 0x69, 0x98, 0xc4, 0xdc, 0x8d, 0xcd, 0x4e, 0xfb, 0x43, 0xb5, 0xa5, - 0x6d, 0xbb, 0x81, 0x85, 0xdf, 0x65, 0x21, 0xc5, 0x23, 0x4e, 0x22, 0x56, 0x9d, 0xba, 0x81, 0xf5, - 0x4e, 0xec, 0xd0, 0x3e, 0x40, 0xba, 0x20, 0x97, 0x8e, 0x9f, 0xd0, 0xe3, 0xb7, 0xbc, 0x09, 0x28, - 0x56, 0x8d, 0x21, 0x7d, 0x06, 0xb0, 0x3e, 0x44, 0xdd, 0xe0, 0x58, 0xdb, 0xe6, 0xf7, 0xe0, 0x6b, - 0x89, 0x75, 0x64, 0xd1, 0xe7, 0xeb, 0xd6, 0x1f, 0x0b, 0xf0, 0xe8, 0xbd, 0x93, 0x58, 0x34, 0xf5, - 0x07, 0xe3, 0x6e, 0x6f, 0xa8, 0xf7, 0xd5, 0x2d, 0xf6, 0x45, 0xcc, 0xc9, 0xf8, 0xf9, 0xb1, 0x5a, - 0xc8, 0x97, 0x1d, 0xf1, 0xc5, 0xcc, 0x91, 0x79, 0xac, 0x96, 0xe4, 0xaa, 0xa3, 0x96, 0xd1, 0x2e, - 0xd4, 0x6d, 0xab, 0x6b, 0x8c, 0x87, 0x5d, 0x5b, 0x3f, 0x3e, 0x56, 0xb7, 0x6f, 0x03, 0x1d, 0xb5, - 0x72, 0x0b, 0xe8, 0x1c, 0xab, 0xd5, 0xdb, 0x40, 0x47, 0x55, 0x5a, 0x7f, 0x2f, 0x42, 0x6d, 0x5d, - 0x30, 0xd1, 0x2f, 0x64, 0x9a, 0x15, 0xb8, 0xc7, 0x7e, 0xfc, 0x60, 0x65, 0x15, 0x2b, 0xde, 0x14, - 0x44, 0x92, 0x7d, 0x02, 0x95, 0xb9, 0x4b, 0xa8, 0x0c, 0x68, 0xc5, 0x92, 0x3b, 0xd4, 0x84, 0x62, - 0x28, 0xe2, 0xb8, 0x61, 0x15, 0x43, 0x1f, 0x7d, 0x09, 0xbb, 0x24, 0x61, 0x65, 0xd5, 0x99, 0x85, - 0x11, 0xe6, 0xdf, 0x55, 0x74, 0xd4, 0xa6, 0x80, 0xcf, 0x24, 0xca, 0x0c, 0x12, 0xec, 0x65, 0x98, - 0x72, 0x9f, 0xd6, 0x2c, 0xb9, 0x43, 0x9f, 0x42, 0x2d, 0x0b, 0xe3, 0xc0, 0x21, 0xe1, 0xf7, 0x58, - 0xba, 0x56, 0x61, 0xc0, 0x38, 0xfc, 0x9e, 0x47, 0xcc, 0x74, 0x31, 0x9b, 0xe1, 0x4c, 0x88, 0xab, - 0x5c, 0x0c, 0x02, 0xe2, 0x0a, 0x8c, 0xbd, 0x72, 0x78, 0x0e, 0x12, 0xd9, 0x53, 0x95, 0x6c, 0xf5, - 0x5b, 0xbe, 0x67, 0x42, 0xba, 0x16, 0xd6, 0x84, 0x90, 0x4a, 0x61, 0xab, 0x23, 0xdd, 0xc4, 0x6b, - 0xd4, 0x0e, 0x28, 0xba, 0xfd, 0x5c, 0xb7, 0x0c, 0xdd, 0x56, 0xb7, 0x50, 0x05, 0x8a, 0x03, 0x53, - 0x2d, 0x30, 0xdf, 0x9a, 0x13, 0xc3, 0x76, 0x06, 0xc6, 0x0b, 0xfd, 0xd4, 0x56, 0x8b, 0xad, 0x7f, - 0x14, 0xa1, 0xb6, 0x2e, 0xf8, 0xec, 0x72, 0x24, 0xf3, 0xd6, 0x83, 0x84, 0x0c, 0x67, 0x92, 0x79, - 0xf9, 0x1c, 0xf1, 0x39, 0xd4, 0x7d, 0x42, 0xd7, 0x0a, 0x45, 0xa1, 0xe0, 0x13, 0x9a, 0x2b, 0xb0, - 0x29, 0x22, 0x0e, 0xa5, 0x37, 0xd9, 0x12, 0x3d, 0x81, 0xda, 0x7c, 0x11, 0xd1, 0xd0, 0x73, 0x09, - 0x95, 0x8e, 0xbc, 0x01, 0xd0, 0x11, 0x94, 0x82, 0x14, 0x73, 0x07, 0xd6, 0x3b, 0xfb, 0x0f, 0xb6, - 0xa2, 0xf6, 0x79, 0x8a, 0x2d, 0xa6, 0xb9, 0xf7, 0xa7, 0x02, 0x94, 0xce, 0x53, 0x8c, 0x0e, 0x58, - 0xc9, 0xf4, 0xdc, 0xd4, 0x59, 0x66, 0x33, 0x96, 0x5e, 0x65, 0xe1, 0x48, 0x8e, 0xbd, 0xca, 0x66, - 0x03, 0x1f, 0xf5, 0x40, 0xe1, 0xf3, 0x98, 0x97, 0x44, 0xdc, 0x7e, 0xb3, 0xf3, 0xc5, 0x07, 0xed, - 0xb7, 0x4d, 0xa9, 0x6d, 0xad, 0x79, 0xad, 0xdf, 0x80, 0x92, 0xa3, 0xb7, 0x2b, 0x6f, 0x15, 0x4a, - 0x03, 0xf3, 0x6b, 0xb5, 0x20, 0x16, 0x3f, 0x17, 0xf5, 0x76, 0xed, 0xf0, 0x12, 0x83, 0x8d, 0xf1, - 0x73, 0xb5, 0xdc, 0x7a, 0x06, 0x3b, 0x9b, 0x6d, 0x9b, 0xdd, 0xfb, 0x32, 0x21, 0xd4, 0x09, 0x67, - 0xb7, 0x4a, 0x06, 0xc3, 0x06, 0x33, 0x56, 0x32, 0x5a, 0x7f, 0x2d, 0x40, 0x55, 0xb6, 0x6c, 0x36, - 0xf4, 0x2d, 0x71, 0x46, 0x58, 0x85, 0x10, 0xc5, 0x39, 0xdf, 0xbe, 0x67, 0xa7, 0x78, 0xd7, 0x0e, - 0x8b, 0x63, 0x9a, 0x38, 0xf3, 0xd0, 0xcb, 0x12, 0x82, 0xb3, 0x65, 0xe8, 0x89, 0xbe, 0x52, 0xb3, - 0x9a, 0x34, 0xb9, 0xd8, 0x40, 0x99, 0xa9, 0x6c, 0xe5, 0xdc, 0x84, 0xac, 0x74, 0x65, 0xb6, 0xb2, - 0xf2, 0xa0, 0x3d, 0x80, 0x1d, 0xba, 0xa9, 0x21, 0x6a, 0x08, 0xd0, 0x1b, 0x8d, 0x7d, 0x00, 0x31, - 0x8e, 0x3a, 0x01, 0x49, 0x78, 0xd0, 0x2b, 0x56, 0x4d, 0x20, 0xe7, 0x24, 0x69, 0xfd, 0xab, 0x04, - 0xb5, 0xf5, 0x90, 0xc0, 0x82, 0x04, 0x93, 0x58, 0xa6, 0x21, 0x5b, 0xb2, 0xb8, 0x72, 0x63, 0x1a, - 0x3a, 0x19, 0x4e, 0x23, 0xf7, 0x3a, 0x6f, 0x2a, 0x0c, 0xb2, 0x38, 0x82, 0x1e, 0x83, 0x12, 0x25, - 0x9e, 0x1b, 0xb1, 0x06, 0x2d, 0x82, 0xa8, 0xca, 0xf7, 0x83, 0x94, 0x27, 0x0c, 0x9e, 0x27, 0x14, - 0x33, 0x99, 0xc8, 0x44, 0x45, 0x00, 0x42, 0x28, 0x78, 0x24, 0x0d, 0xf3, 0x5c, 0xe4, 0xc0, 0x38, - 0x0d, 0xd9, 0xa5, 0x25, 0x93, 0x49, 0x45, 0x2a, 0x4a, 0x5b, 0x4c, 0x7c, 0x02, 0xe0, 0x65, 0xd7, - 0x29, 0x4d, 0x1c, 0x37, 0x0a, 0x78, 0x2a, 0x36, 0x3b, 0x1f, 0x89, 0x10, 0xe2, 0xd3, 0xfe, 0x29, - 0x17, 0x76, 0xa3, 0xc0, 0xaa, 0x79, 0xf9, 0x12, 0x1d, 0x82, 0x2a, 0x0e, 0x94, 0xd4, 0x2b, 0x7c, - 0xcd, 0x13, 0xb5, 0x66, 0x35, 0x39, 0x2e, 0x48, 0x2f, 0xf1, 0x35, 0x1b, 0x3e, 0xe4, 0xe9, 0x1b, - 0xaa, 0x20, 0x86, 0x0f, 0x21, 0xb8, 0xd1, 0x7d, 0x06, 0x35, 0x16, 0xb6, 0x01, 0xbf, 0x49, 0x9d, - 0xdf, 0xe4, 0xff, 0x36, 0x6e, 0xc2, 0x7a, 0x44, 0xc0, 0x2e, 0xa2, 0x84, 0x72, 0xc5, 0x86, 0x77, - 0xe9, 0x30, 0xce, 0x63, 0xb6, 0x77, 0xb8, 0xed, 0x86, 0xf0, 0x1b, 0x43, 0x99, 0xe5, 0x43, 0x50, - 0x73, 0xef, 0xad, 0x15, 0x1b, 0xe2, 0xbe, 0xd2, 0x89, 0x1b, 0x9a, 0xf2, 0x13, 0x2f, 0xfc, 0xd4, - 0xc1, 0xb1, 0xe7, 0xa6, 0x5a, 0x93, 0x7f, 0xa8, 0xa6, 0xc0, 0x27, 0x7e, 0xaa, 0x33, 0xb4, 0xe5, - 0x43, 0x7d, 0x63, 0xb6, 0x63, 0x1f, 0x57, 0x12, 0x71, 0x94, 0x04, 0xf2, 0xb3, 0xcb, 0x70, 0xd1, - 0xa3, 0x24, 0x60, 0x1f, 0x37, 0x5b, 0xbd, 0x15, 0xa1, 0x25, 0x2a, 0x47, 0x35, 0x5b, 0xbd, 0xe5, - 0x71, 0xf5, 0x18, 0x14, 0x9a, 0x8b, 0x44, 0x5c, 0x56, 0xa9, 0x10, 0xb5, 0xfe, 0x5c, 0x02, 0x25, - 0x1f, 0x06, 0x65, 0x11, 0x2f, 0xac, 0x8b, 0xf8, 0xb1, 0xec, 0x12, 0xa2, 0xaf, 0xee, 0x3f, 0x34, - 0x44, 0xb6, 0x37, 0xfa, 0xc3, 0xd7, 0x50, 0x8c, 0xa6, 0xfc, 0x90, 0xe6, 0xfb, 0x3f, 0x56, 0xd6, - 0x84, 0x61, 0xe2, 0xfa, 0x3d, 0x37, 0x72, 0x63, 0x0f, 0x5b, 0xc5, 0x68, 0x8a, 0x26, 0xf0, 0x88, - 0x4d, 0xa1, 0xd8, 0x77, 0x6e, 0xb4, 0xe5, 0xaf, 0x95, 0xc3, 0x07, 0x8d, 0xf4, 0x38, 0x63, 0xdd, - 0xd9, 0x2d, 0x75, 0x7a, 0x1b, 0x20, 0x7b, 0x11, 0xec, 0xde, 0x51, 0xba, 0xf7, 0x87, 0xe4, 0x3e, - 0x40, 0x48, 0x9c, 0xd4, 0x25, 0x24, 0x5c, 0x62, 0xe9, 0xd9, 0x5a, 0x48, 0x4c, 0x01, 0xb0, 0x20, - 0x08, 0x89, 0x13, 0x25, 0x71, 0xe0, 0xd0, 0x70, 0x8e, 0x93, 0x05, 0x95, 0xa9, 0xd5, 0x08, 0xc9, - 0x30, 0x89, 0x03, 0x5b, 0x80, 0xad, 0xef, 0xa0, 0xcc, 0x9b, 0xc6, 0xad, 0x12, 0xb7, 0x0b, 0x75, - 0x6b, 0x34, 0x31, 0xfa, 0x8e, 0x35, 0xea, 0x0d, 0x0c, 0xb5, 0xc0, 0x66, 0xb7, 0xee, 0x29, 0x9b, - 0x27, 0x1d, 0x36, 0xa2, 0x4d, 0x4c, 0xb5, 0xc8, 0xca, 0xdc, 0x9b, 0x91, 0xa5, 0x96, 0xd8, 0x3c, - 0xd6, 0xb3, 0x46, 0xdd, 0xfe, 0x69, 0x77, 0x6c, 0xab, 0x65, 0x36, 0x00, 0x0c, 0xbb, 0xa7, 0xa6, - 0xba, 0xdd, 0xfa, 0x12, 0xea, 0x1b, 0x2e, 0x63, 0x8d, 0x68, 0xd8, 0x11, 0xf5, 0x73, 0x78, 0x22, - 0xeb, 0xe7, 0xb0, 0x73, 0xa2, 0x16, 0x5b, 0xff, 0x2e, 0x40, 0x55, 0x0e, 0xeb, 0xe8, 0xd7, 0x50, - 0xa7, 0x8b, 0x38, 0xc6, 0x91, 0xc3, 0x7f, 0x26, 0x8b, 0x56, 0xff, 0xe4, 0x81, 0xd1, 0x5e, 0x0c, - 0xd2, 0x20, 0x08, 0x7c, 0xf0, 0x7c, 0x0c, 0x4a, 0xde, 0xc6, 0x64, 0x5d, 0xac, 0xca, 0x1e, 0xc6, - 0x44, 0x79, 0x03, 0x93, 0xd5, 0xb0, 0x2a, 0xbb, 0x17, 0x2b, 0x72, 0xc9, 0x82, 0xe2, 0xcc, 0x99, - 0x85, 0xd3, 0x8d, 0x8e, 0xc2, 0xb1, 0xb3, 0x90, 0x4d, 0x6d, 0xfb, 0x00, 0x04, 0x13, 0x56, 0x7e, - 0x99, 0x5c, 0x14, 0xc1, 0x9a, 0x44, 0x06, 0x7e, 0xeb, 0xd9, 0x7d, 0x23, 0x3a, 0x7b, 0xf0, 0x89, - 0x78, 0xa7, 0xad, 0xf7, 0xd4, 0x22, 0x02, 0xa8, 0xe8, 0xd6, 0xd8, 0xec, 0x1a, 0x6a, 0xa9, 0xf7, - 0xe2, 0x87, 0x7f, 0x7e, 0x56, 0xf8, 0x5d, 0x7f, 0xe3, 0x8f, 0x0f, 0x51, 0x18, 0xb8, 0x34, 0x39, - 0x5a, 0xa6, 0xe9, 0x57, 0x6e, 0x80, 0x63, 0x7a, 0xe4, 0xa6, 0xe1, 0xd1, 0xbd, 0x7f, 0xd3, 0xf8, - 0x76, 0x99, 0xa6, 0x1b, 0x31, 0x37, 0xad, 0xf0, 0xa6, 0x75, 0xf2, 0xdf, 0x00, 0x00, 0x00, 0xff, - 0xff, 0xe6, 0x88, 0xfe, 0x82, 0x02, 0x11, 0x00, 0x00, + 0x03, 0x73, 0xac, 0x9f, 0xe6, 0x88, 0xc2, 0xee, 0x79, 0x75, 0xf1, 0xc6, 0xd0, 0xed, 0x93, 0x8d, + 0xeb, 0x6b, 0xcc, 0xca, 0xde, 0xc8, 0xe8, 0x6f, 0x60, 0x80, 0x9a, 0x00, 0xe7, 0x96, 0x9e, 0x53, + 0xeb, 0xbd, 0x0a, 0x94, 0xa3, 0x30, 0xbe, 0x6a, 0xfd, 0xa7, 0x08, 0x3b, 0x9b, 0xe9, 0xce, 0x9c, + 0x91, 0xba, 0x19, 0x8e, 0xa9, 0xb3, 0x51, 0xe3, 0x41, 0x40, 0x06, 0xab, 0xf4, 0x1f, 0x43, 0x85, + 0x2c, 0xa6, 0x4e, 0xe8, 0x4b, 0x2f, 0x6e, 0x93, 0xc5, 0x74, 0xe0, 0x23, 0x0b, 0x1a, 0xd4, 0x0d, + 0x9c, 0xec, 0x9d, 0x93, 0xa4, 0x34, 0x4c, 0x62, 0xee, 0xc6, 0x66, 0xa7, 0xfd, 0xa1, 0xda, 0xd2, + 0xb6, 0xdd, 0xc0, 0xc2, 0xef, 0xb2, 0x90, 0xe2, 0x11, 0x27, 0x11, 0xab, 0x4e, 0xdd, 0xc0, 0x7a, + 0x27, 0x76, 0x68, 0x1f, 0x20, 0x5d, 0x90, 0x4b, 0xc7, 0x4f, 0xe8, 0xf1, 0x5b, 0xde, 0x04, 0x14, + 0xab, 0xc6, 0x90, 0x3e, 0x03, 0x58, 0x1f, 0xa2, 0x6e, 0x70, 0xac, 0x6d, 0x73, 0x3b, 0xf8, 0x5a, + 0x62, 0x1d, 0x59, 0xf4, 0xf9, 0xba, 0xf5, 0xc7, 0x02, 0x3c, 0x7a, 0xef, 0x26, 0x16, 0x4d, 0xfd, + 0xc1, 0xb8, 0xdb, 0x1b, 0xea, 0x7d, 0x75, 0x8b, 0x7d, 0x11, 0x73, 0x32, 0x7e, 0x7e, 0xac, 0x16, + 0xf2, 0x65, 0x47, 0x7c, 0x31, 0x73, 0x64, 0x1e, 0xab, 0x25, 0xb9, 0xea, 0xa8, 0x65, 0xb4, 0x0b, + 0x75, 0xdb, 0xea, 0x1a, 0xe3, 0x61, 0xd7, 0xd6, 0x8f, 0x8f, 0xd5, 0xed, 0xdb, 0x40, 0x47, 0xad, + 0xdc, 0x02, 0x3a, 0xc7, 0x6a, 0xf5, 0x36, 0xd0, 0x51, 0x95, 0xd6, 0xdf, 0x8b, 0x50, 0x5b, 0x17, + 0x4c, 0xf4, 0x0b, 0x99, 0x66, 0x05, 0xee, 0xb1, 0x1f, 0x3f, 0x58, 0x59, 0xc5, 0x8a, 0x37, 0x05, + 0x91, 0x64, 0x9f, 0x40, 0x65, 0xee, 0x12, 0x2a, 0x03, 0x5a, 0xb1, 0xe4, 0x0e, 0x35, 0xa1, 0x18, + 0x8a, 0x38, 0x6e, 0x58, 0xc5, 0xd0, 0x47, 0x5f, 0xc2, 0x2e, 0x49, 0x58, 0x59, 0x75, 0x66, 0x61, + 0x84, 0xf9, 0x77, 0x15, 0x1d, 0xb5, 0x29, 0xe0, 0x33, 0x89, 0xb2, 0x03, 0x09, 0xf6, 0x32, 0x4c, + 0xb9, 0x4f, 0x6b, 0x96, 0xdc, 0xa1, 0x4f, 0xa1, 0x96, 0x85, 0x71, 0xe0, 0x90, 0xf0, 0x7b, 0x2c, + 0x5d, 0xab, 0x30, 0x60, 0x1c, 0x7e, 0xcf, 0x23, 0x66, 0xba, 0x98, 0xcd, 0x70, 0x26, 0xc4, 0x55, + 0x2e, 0x06, 0x01, 0x71, 0x05, 0xc6, 0x5e, 0x39, 0x3c, 0x07, 0x89, 0xec, 0xa9, 0x4a, 0xb6, 0xfa, + 0x2d, 0xdf, 0x33, 0x21, 0x5d, 0x0b, 0x6b, 0x42, 0x48, 0xa5, 0xb0, 0xd5, 0x91, 0x6e, 0xe2, 0x35, + 0x6a, 0x07, 0x14, 0xdd, 0x7e, 0xae, 0x5b, 0x86, 0x6e, 0xab, 0x5b, 0xa8, 0x02, 0xc5, 0x81, 0xa9, + 0x16, 0x98, 0x6f, 0xcd, 0x89, 0x61, 0x3b, 0x03, 0xe3, 0x85, 0x7e, 0x6a, 0xab, 0xc5, 0xd6, 0x3f, + 0x8a, 0x50, 0x5b, 0x17, 0x7c, 0x66, 0x1c, 0xc9, 0xbc, 0xf5, 0x20, 0x21, 0xc3, 0x99, 0x64, 0x5e, + 0x3e, 0x47, 0x7c, 0x0e, 0x75, 0x9f, 0xd0, 0xb5, 0x42, 0x51, 0x28, 0xf8, 0x84, 0xe6, 0x0a, 0x6c, + 0x8a, 0x88, 0x43, 0xe9, 0x4d, 0xb6, 0x44, 0x4f, 0xa0, 0x36, 0x5f, 0x44, 0x34, 0xf4, 0x5c, 0x42, + 0xa5, 0x23, 0x6f, 0x00, 0x74, 0x04, 0xa5, 0x20, 0xc5, 0xdc, 0x81, 0xf5, 0xce, 0xfe, 0x83, 0xad, + 0xa8, 0x7d, 0x9e, 0x62, 0x8b, 0x69, 0xee, 0xfd, 0xa9, 0x00, 0xa5, 0xf3, 0x14, 0xa3, 0x03, 0x56, + 0x32, 0x3d, 0x37, 0x75, 0x96, 0xd9, 0x8c, 0xa5, 0x97, 0xa8, 0x5d, 0xc0, 0xb1, 0x57, 0xd9, 0x6c, + 0xe0, 0xa3, 0x1e, 0x28, 0x7c, 0x1e, 0xf3, 0x92, 0x48, 0xd6, 0xe4, 0x2f, 0x3e, 0x78, 0x7e, 0xdb, + 0x94, 0xda, 0xd6, 0x9a, 0xd7, 0xfa, 0x0d, 0x28, 0x39, 0x7a, 0xbb, 0xf2, 0x56, 0xa1, 0x34, 0x30, + 0xbf, 0x56, 0x0b, 0x62, 0xf1, 0x73, 0x51, 0x6f, 0xd7, 0x0e, 0x2f, 0x31, 0xd8, 0x18, 0x3f, 0x57, + 0xcb, 0xad, 0x67, 0xb0, 0xb3, 0xd9, 0xb6, 0x99, 0xdd, 0x97, 0x09, 0xa1, 0x4e, 0x38, 0xbb, 0x55, + 0x32, 0x18, 0x36, 0x98, 0xb1, 0x92, 0xd1, 0xfa, 0x6b, 0x01, 0xaa, 0xb2, 0x65, 0xb3, 0xa1, 0x6f, + 0x89, 0x33, 0xc2, 0x2a, 0x84, 0x78, 0x60, 0xbe, 0x7d, 0xef, 0x9c, 0xe2, 0xdd, 0x73, 0x58, 0x1c, + 0xd3, 0xc4, 0x99, 0x87, 0x5e, 0x96, 0x10, 0x9c, 0x2d, 0x43, 0x4f, 0xf4, 0x95, 0x9a, 0xd5, 0xa4, + 0xc9, 0xc5, 0x06, 0xca, 0x8e, 0xca, 0x56, 0xce, 0x4d, 0xc8, 0x96, 0x85, 0x2b, 0xb3, 0x95, 0x95, + 0x07, 0xed, 0x01, 0xec, 0xd0, 0x4d, 0x0d, 0x51, 0x43, 0x80, 0xde, 0x68, 0xec, 0x03, 0x88, 0x71, + 0xd4, 0x09, 0x48, 0xc2, 0x83, 0x5e, 0xb1, 0x6a, 0x02, 0x39, 0x27, 0x49, 0xeb, 0x5f, 0x25, 0xa8, + 0xad, 0x87, 0x04, 0x16, 0x24, 0x98, 0xc4, 0x32, 0x0d, 0xd9, 0x92, 0xc5, 0x95, 0x1b, 0xd3, 0xd0, + 0xc9, 0x70, 0x1a, 0xb9, 0xd7, 0x79, 0x53, 0x61, 0x90, 0xc5, 0x11, 0xf4, 0x18, 0x94, 0x28, 0xf1, + 0xdc, 0x88, 0x35, 0x68, 0x11, 0x44, 0x55, 0xbe, 0x1f, 0xa4, 0x3c, 0x61, 0xf0, 0x3c, 0xa1, 0x98, + 0xc9, 0x44, 0x26, 0x2a, 0x02, 0x10, 0x42, 0xc1, 0x23, 0x69, 0x98, 0xe7, 0x22, 0x07, 0xc6, 0x69, + 0xc8, 0x8c, 0x96, 0x4c, 0x26, 0x15, 0xa9, 0x28, 0xcf, 0x62, 0xe2, 0x13, 0x00, 0x2f, 0xbb, 0x4e, + 0x69, 0xe2, 0xb8, 0x51, 0xc0, 0x53, 0xb1, 0xd9, 0xf9, 0x48, 0x84, 0x10, 0x9f, 0xf6, 0x4f, 0xb9, + 0xb0, 0x1b, 0x05, 0x56, 0xcd, 0xcb, 0x97, 0xe8, 0x10, 0x54, 0x71, 0xa1, 0xa4, 0x5e, 0xe1, 0x6b, + 0x9e, 0xa8, 0x35, 0xab, 0xc9, 0x71, 0x41, 0x7a, 0x89, 0xaf, 0xd9, 0xf0, 0x21, 0x6f, 0xdf, 0x50, + 0x05, 0x31, 0x7c, 0x08, 0xc1, 0x8d, 0xee, 0x33, 0xa8, 0xb1, 0xb0, 0x0d, 0xb8, 0x25, 0x75, 0x6e, + 0xc9, 0xff, 0x6d, 0x58, 0xc2, 0x7a, 0x44, 0xc0, 0x0c, 0x51, 0x42, 0xb9, 0x62, 0xc3, 0xbb, 0x74, + 0x18, 0xe7, 0xb1, 0xb3, 0x77, 0xf8, 0xd9, 0x0d, 0xe1, 0x37, 0x86, 0xb2, 0x93, 0x0f, 0x41, 0xcd, + 0xbd, 0xb7, 0x56, 0x6c, 0x08, 0x7b, 0xa5, 0x13, 0x37, 0x34, 0xe5, 0x27, 0x5e, 0xf8, 0xa9, 0x83, + 0x63, 0xcf, 0x4d, 0xb5, 0x26, 0xff, 0x50, 0x4d, 0x81, 0x4f, 0xfc, 0x54, 0x67, 0x68, 0xcb, 0x87, + 0xfa, 0xc6, 0x6c, 0xc7, 0x3e, 0xae, 0x24, 0xe2, 0x28, 0x09, 0xe4, 0x67, 0x97, 0xe1, 0xa2, 0x47, + 0x49, 0xc0, 0x3e, 0x6e, 0xb6, 0x7a, 0x2b, 0x42, 0x4b, 0x54, 0x8e, 0x6a, 0xb6, 0x7a, 0xcb, 0xe3, + 0xea, 0x31, 0x28, 0x34, 0x17, 0x89, 0xb8, 0xac, 0x52, 0x21, 0x6a, 0xfd, 0xb9, 0x04, 0x4a, 0x3e, + 0x0c, 0xca, 0x22, 0x5e, 0x58, 0x17, 0xf1, 0x63, 0xd9, 0x25, 0x44, 0x5f, 0xdd, 0x7f, 0x68, 0x88, + 0x6c, 0x6f, 0xf4, 0x87, 0xaf, 0xa1, 0x18, 0x4d, 0xf9, 0x25, 0xcd, 0xf7, 0x7f, 0xac, 0xac, 0x09, + 0xc3, 0xc4, 0xf5, 0x7b, 0x6e, 0xe4, 0xc6, 0x1e, 0xb6, 0x8a, 0xd1, 0x14, 0x4d, 0xe0, 0x11, 0x9b, + 0x42, 0xb1, 0xef, 0xdc, 0x68, 0xcb, 0x5f, 0x2b, 0x87, 0x0f, 0x1e, 0xd2, 0xe3, 0x8c, 0x75, 0x67, + 0xb7, 0xd4, 0xe9, 0x6d, 0x80, 0xec, 0x45, 0xb0, 0x7b, 0x47, 0xe9, 0xde, 0x1f, 0x92, 0xfb, 0x00, + 0x21, 0x71, 0x52, 0x97, 0x90, 0x70, 0x89, 0xa5, 0x67, 0x6b, 0x21, 0x31, 0x05, 0xc0, 0x82, 0x20, + 0x24, 0x4e, 0x94, 0xc4, 0x81, 0x43, 0xc3, 0x39, 0x4e, 0x16, 0x54, 0xa6, 0x56, 0x23, 0x24, 0xc3, + 0x24, 0x0e, 0x6c, 0x01, 0xb6, 0xbe, 0x83, 0x32, 0x6f, 0x1a, 0xb7, 0x4a, 0xdc, 0x2e, 0xd4, 0xad, + 0xd1, 0xc4, 0xe8, 0x3b, 0xd6, 0xa8, 0x37, 0x30, 0xd4, 0x02, 0x9b, 0xdd, 0xba, 0xa7, 0x6c, 0x9e, + 0x74, 0xd8, 0x88, 0x36, 0x31, 0xd5, 0x22, 0x2b, 0x73, 0x6f, 0x46, 0x96, 0x5a, 0x62, 0xf3, 0x58, + 0xcf, 0x1a, 0x75, 0xfb, 0xa7, 0xdd, 0xb1, 0xad, 0x96, 0xd9, 0x00, 0x30, 0xec, 0x9e, 0x9a, 0xea, + 0x76, 0xeb, 0x4b, 0xa8, 0x6f, 0xb8, 0x8c, 0x35, 0xa2, 0x61, 0x47, 0xd4, 0xcf, 0xe1, 0x89, 0xac, + 0x9f, 0xc3, 0xce, 0x89, 0x5a, 0x6c, 0xfd, 0xbb, 0x00, 0x55, 0x39, 0xac, 0xa3, 0x5f, 0x43, 0x9d, + 0x2e, 0xe2, 0x18, 0x47, 0x0e, 0xff, 0x99, 0x2c, 0x5a, 0xfd, 0x93, 0x07, 0x46, 0x7b, 0x31, 0x48, + 0x83, 0x20, 0xf0, 0xc1, 0xf3, 0x31, 0x28, 0x79, 0x1b, 0x93, 0x75, 0xb1, 0x2a, 0x7b, 0x18, 0x13, + 0xe5, 0x0d, 0x4c, 0x56, 0xc3, 0xaa, 0xec, 0x5e, 0xac, 0xc8, 0x25, 0x0b, 0x8a, 0x33, 0x67, 0x16, + 0xf2, 0x81, 0x4d, 0x96, 0x41, 0x8e, 0x9d, 0x85, 0x6c, 0x6a, 0xdb, 0x07, 0x20, 0x98, 0xb0, 0xf2, + 0xcb, 0xe4, 0xa2, 0x08, 0xd6, 0x24, 0x32, 0xf0, 0x5b, 0xcf, 0xee, 0x1b, 0xd1, 0xd9, 0x83, 0x4f, + 0xc4, 0x3b, 0x6d, 0xbd, 0xa7, 0x16, 0x11, 0x40, 0x45, 0xb7, 0xc6, 0x66, 0xd7, 0x50, 0x4b, 0xbd, + 0x17, 0x3f, 0xfc, 0xf3, 0xb3, 0xc2, 0xef, 0xfa, 0x1b, 0x7f, 0x7c, 0x88, 0xc2, 0xc0, 0xa5, 0xc9, + 0xd1, 0x32, 0x4d, 0xbf, 0x72, 0x03, 0x1c, 0xd3, 0x23, 0x37, 0x0d, 0x8f, 0xee, 0xfd, 0x9b, 0xc6, + 0xb7, 0xcb, 0x34, 0xdd, 0x88, 0xb9, 0x69, 0x85, 0x37, 0xad, 0x93, 0xff, 0x06, 0x00, 0x00, 0xff, + 0xff, 0xb9, 0xe9, 0x1c, 0x86, 0x02, 0x11, 0x00, 0x00, } diff --git a/api/models/vpp/interfaces/interface.proto b/api/models/vpp/interfaces/interface.proto index 753e70b230..3803bb63ec 100644 --- a/api/models/vpp/interfaces/interface.proto +++ b/api/models/vpp/interfaces/interface.proto @@ -77,11 +77,11 @@ message Interface { repeated RxMode rx_modes = 12; message RxPlacement { - // select from interval <0, number-of-queues) + // Select from interval <0, number-of-queues) uint32 queue = 1; - // select from interval <0, number-of-workers) + // Select from interval <0, number-of-workers) uint32 worker = 2; - // let the main thread to process the given queue + // Let the main thread to process the given queue // - if enabled, value of is ignored bool main_thread = 3; } @@ -104,9 +104,12 @@ message Interface { // SubInterface defines configuration for interface type: SUB_INTERFACE message SubInterface { - string parent_name = 1; /* Name of the parent (super) interface */ - uint32 sub_id = 2; /* SubInterface ID, used as VLAN */ - enum TagRewriteOptions { /* VLAN tag rewrite rule applied for given tag for sub-interface */ + // Name of the parent (super) interface + string parent_name = 1; + // SubInterface ID, used as VLAN + uint32 sub_id = 2; + // VLAN tag rewrite rule applied for given tag for sub-interface + enum TagRewriteOptions { DISABLED = 0; PUSH1 = 1; PUSH2 = 2; @@ -118,9 +121,12 @@ message SubInterface { TRANSLATE22 = 8; } TagRewriteOptions tag_rw_option = 3; - bool push_dot1q = 4; /* Set ether-type of the first tag to dot1q if true, dot1ad otherwise */ - uint32 tag1 = 5; /* First tag (required for PUSH1 and any TRANSLATE) */ - uint32 tag2 = 6; /* Second tag (required for PUSH2 and any TRANSLATE) */ + // Set ether-type of the first tag to dot1q if true, dot1ad otherwise + bool push_dot1q = 4; + // First tag (required for PUSH1 and any TRANSLATE) + uint32 tag1 = 5; + // Second tag (required for PUSH2 and any TRANSLATE) + uint32 tag2 = 6; } // MemifLink defines configuration for interface type: MEMIF @@ -132,17 +138,32 @@ message MemifLink { } MemifMode mode = 1; bool master = 2; - uint32 id = 3; /* 32bit integer used to authenticate and match opposite sides of the connection */ - string socket_filename = 4; /* filename of the socket used for connection establishment */ + // Id is a 32bit integer used to authenticate and match opposite sides of the connection + uint32 id = 3; + // Filename of the socket used for connection establishment + string socket_filename = 4; string secret = 5; - uint32 ring_size = 6; /* the number of entries of RX/TX rings */ - uint32 buffer_size = 7; /* size of the buffer allocated for each ring entry */ - uint32 rx_queues = 8; /* number of rx queues (only valid for slave) */ - uint32 tx_queues = 9; /* number of tx queues (only valid for slave) */ + // The number of entries of RX/TX rings + uint32 ring_size = 6; + // Size of the buffer allocated for each ring entry + uint32 buffer_size = 7; + // Number of rx queues (only valid for slave) + uint32 rx_queues = 8; + // Number of tx queues (only valid for slave) + uint32 tx_queues = 9; } // VxlanLink defines configuration for interface type: VXLAN_TUNNEL message VxlanLink { + // SrcAddress is source VTEP address + string src_address = 1; + // DstAddress is destination VTEP address + string dst_address = 2; + // Vni stands for VXLAN Network Identifier + uint32 vni = 3; + // Multicast defines name of multicast interface + string multicast = 4; + message Gpe { enum Protocol { UNKNOWN = 0; @@ -151,65 +172,77 @@ message VxlanLink { ETHERNET = 3; NSH = 4; }; - uint32 decap_vrf_id = 4; - Protocol protocol = 5; + uint32 decap_vrf_id = 1; + // Protocol defines encapsulated protocol + Protocol protocol = 2; } - string src_address = 1; /* source VTEP address */ - string dst_address = 2; /* destination VTEP address */ - uint32 vni = 3; /* VXLAN Network Identifier */ - string multicast = 4; /* multicast interface */ + // Gpe (Generic Protocol Extension) allows encapsulating not only Ethernet frame payload. Gpe gpe = 5; } // AfpacketLink defines configuration for interface type: AF_PACKET message AfpacketLink { - string host_if_name = 1; /* name of the host interface to bind to (mandatory) */ + // Name of the host interface to bind to (mandatory) + string host_if_name = 1; } // TapLink defines configuration for interface type: TAP message TapLink { - uint32 version = 1; /* 1 / unset = use the original TAP interface; 2 = use a fast virtio-based TAP */ - string host_if_name = 2; /* name of the TAP interface in the host OS; - if empty, it will be auto-generated (suitable for combination with TAP_TO_VPP - interface from Linux ifplugin, because then this name is only temporary anyway) - */ - string to_microservice = 3; /* if TAP connects VPP with microservice, fill this parameter with the target - microservice name - should match with the namespace reference of the associated - TAP_TO_VPP interface (it is still moved to the namespace by Linux-ifplugin but - VPP-ifplugin needs to be aware of this dependency) */ - uint32 rx_ring_size = 4; /* Rx ring buffer size; must be power of 2; default is 256; only for TAP v.2 */ - uint32 tx_ring_size = 5; /* Tx ring buffer size; must be power of 2; default is 256; only for TAP v.2 */ - bool enable_gso = 6; /* Enable GSO */ + // 1 / unset = use the original TAP interface; 2 = use a fast virtio-based TAP + uint32 version = 1; + // Name of the TAP interface in the host OS; + // if empty, it will be auto-generated (suitable for combination with TAP_TO_VPP + // interface from Linux ifplugin, because then this name is only temporary anyway) + string host_if_name = 2; + // If TAP connects VPP with microservice, fill this parameter with the target + // microservice name - should match with the namespace reference of the associated + // TAP_TO_VPP interface (it is still moved to the namespace by Linux-ifplugin but + // VPP-ifplugin needs to be aware of this dependency) + string to_microservice = 3; + // Rx ring buffer size; must be power of 2; default is 256; only for TAP v.2 + uint32 rx_ring_size = 4; + // Tx ring buffer size; must be power of 2; default is 256; only for TAP v.2 + uint32 tx_ring_size = 5; + bool enable_gso = 6; } // IPSecLink defines configuration for interface type: IPSEC_TUNNEL message IPSecLink { - bool esn = 2; /* Extended sequence number */ - bool anti_replay = 3; /* Anti replay option */ - string local_ip = 4; /* Local IP address */ - string remote_ip = 5; /* Remote IP address */ - uint32 local_spi = 6; /* Local security parameter index */ - uint32 remote_spi = 7; /* Remote security parameter index */ - - ipsec.CryptoAlg crypto_alg = 8; /* Cryptographic algorithm for encryption */ + // Extended sequence number + bool esn = 2; + // Anti replay option + bool anti_replay = 3; + string local_ip = 4; + string remote_ip = 5; + // Local security parameter index + uint32 local_spi = 6; + // Remote security parameter index + uint32 remote_spi = 7; + + // Cryptographic algorithm for encryption + ipsec.CryptoAlg crypto_alg = 8; string local_crypto_key = 9; string remote_crypto_key = 10; - ipsec.IntegAlg integ_alg = 11; /* Cryptographic algorithm for authentication */ + // Cryptographic algorithm for authentication + ipsec.IntegAlg integ_alg = 11; string local_integ_key = 12; string remote_integ_key = 13; - bool enable_udp_encap = 14; /* Enable UDP encapsulation */ + bool enable_udp_encap = 14; } // VmxNet3Link defines configuration for interface type: VMXNET3_INTERFACE -/* PCI address (unsigned 32bit int) is derived from vmxnet3 interface name. It is expected that the interface - name is in format "vmxnet3-///", where 'd' stands for domain (max ffff), 'b' is bus (max ff), - 's' is slot (max 1f) and 'f is function' (max 7). All values are base 16 */ +// PCI address (unsigned 32bit int) is derived from vmxnet3 interface name. It is expected that the interface +// name is in format "vmxnet3-///", where 'd' stands for domain (max ffff), 'b' is bus (max ff), +// 's' is slot (max 1f) and 'f is function' (max 7). All values are base 16 message VmxNet3Link { - bool enable_elog = 2; /* turn on elog */ - uint32 rxq_size = 3; /* receive queue size (default is 1024) */ - uint32 txq_size = 4; /* transmit queue size (default is 1024) */ + // Turn on elog + bool enable_elog = 2; + // Receive queue size (default is 1024) + uint32 rxq_size = 3; + // Transmit queue size (default is 1024) + uint32 txq_size = 4; } // BondLink defines configuration for interface type: BOND_INTERFACE @@ -231,7 +264,8 @@ message BondLink { L34 = 1; L23 = 2; } - LoadBalance lb = 4; // Load balance is optional and valid only for XOR and LACP modes + // Load balance is optional and valid only for XOR and LACP modes + LoadBalance lb = 4; message BondedInterface { string name = 1; @@ -244,9 +278,12 @@ message BondLink { message GreLink { enum Type { UNKNOWN = 0; - L3 = 1; // L3 GRE (i.e. this tunnel is in L3 mode) - TEB = 2; // Transparent Ethernet Bridging - the tunnel is in L2 mode - ERSPAN = 3; // ERSPAN - the tunnel is for port mirror SPAN output + // L3 GRE (i.e. this tunnel is in L3 mode) + L3 = 1; + // TEB - Transparent Ethernet Bridging - the tunnel is in L2 mode + TEB = 2; + // ERSPAN - the tunnel is for port mirror SPAN output + ERSPAN = 3; }; Type tunnel_type = 1; string src_addr = 2;