frostfs-api/service/meta.proto
Stanislav Bogatyrev e75ef53793 [#32] Rename fields according to Protobuf Style Guide
Signed-off-by: Stanislav Bogatyrev <stanislav@nspcc.ru>
2020-08-07 14:36:15 +03:00

23 lines
565 B
Protocol Buffer

syntax = "proto3";
package service;
option go_package = "github.com/nspcc-dev/neofs-api-go/service";
option csharp_namespace = "NeoFS.API.Service";
// RequestMetaHeader contains information about request meta headers.
message RequestMetaHeader {
// Carries maximum number of nodes in the request route.
uint32 ttl = 1;
message XHeader {
// Carries key to the X-Header.
string key = 1;
// Carries value of the X-Header.
string value = 2;
}
// Carries request X-Headers.
repeated XHeader x_headers = 2;
}