All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xds.core.v3.cidr.proto Maven / Gradle / Ivy

There is a newer version: 1.0.46
Show newest version
syntax = "proto3";

package xds.core.v3;

import "xds/annotations/v3/status.proto";
import "google/protobuf/wrappers.proto";

import "validate/validate.proto";

option java_outer_classname = "CidrRangeProto";
option java_multiple_files = true;
option java_package = "com.github.xds.core.v3";
option go_package = "github.com/cncf/xds/go/xds/core/v3";

option (xds.annotations.v3.file_status).work_in_progress = true;

// CidrRange specifies an IP Address and a prefix length to construct
// the subnet mask for a `CIDR `_ range.
message CidrRange {
  // IPv4 or IPv6 address, e.g. ``192.0.0.0`` or ``2001:db8::``.
  string address_prefix = 1 [(validate.rules).string = {min_len: 1}];

  // Length of prefix, e.g. 0, 32. Defaults to 0 when unset.
  google.protobuf.UInt32Value prefix_len = 2 [(validate.rules).uint32 = {lte: 128}];
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy