frostfs-api/service/meta.proto
Leonard Lyubich 0ca83fcef6 service: Tidy up the format
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2020-08-06 23:45:50 +03:00

23 lines
564 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 XHeaders = 2;
}