0ca83fcef6
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
23 lines
564 B
Protocol Buffer
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;
|
|
}
|