Add mode to PipeInstance (#8423)

Signed-off-by: Akhil Thampy <akhilthampy@yahoo.com>

Mirrored from https://github.com/envoyproxy/envoy @ 750431ad659c86173b152de53fed1054f10270dd
master-ci-test
data-plane-api(CircleCI) 5 years ago
parent 0999165d76
commit 5822e0d801
  1. 3
      envoy/api/v2/core/address.proto
  2. 3
      envoy/api/v3alpha/core/address.proto

@ -20,6 +20,9 @@ message Pipe {
// Paths starting with '@' will result in an error in environments other than
// Linux.
string path = 1 [(validate.rules).string = {min_bytes: 1}];
// The mode for the Pipe. Not applicable for abstract sockets.
uint32 mode = 2 [(validate.rules).uint32 = {lte: 511}];
}
// [#next-free-field: 7]

@ -24,6 +24,9 @@ message Pipe {
// Paths starting with '@' will result in an error in environments other than
// Linux.
string path = 1 [(validate.rules).string = {min_bytes: 1}];
// The mode for the Pipe. Not applicable for abstract sockets.
uint32 mode = 2 [(validate.rules).uint32 = {lte: 511}];
}
// [#next-free-field: 7]

Loading…
Cancel
Save