forked from TrueCloudLab/frostfs-api
Define ResponseMetaHeader in service package
This commit is contained in:
parent
7fc06acc9b
commit
f3595a85c5
1 changed files with 10 additions and 0 deletions
|
@ -18,3 +18,13 @@ message RequestMetaHeader {
|
||||||
// TODO: not used for now, should be implemented in future
|
// TODO: not used for now, should be implemented in future
|
||||||
uint32 Version = 3;
|
uint32 Version = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ResponseMetaHeader contains meta information based on request processing by server
|
||||||
|
// (should be embedded into message)
|
||||||
|
message ResponseMetaHeader {
|
||||||
|
// Current NeoFS epoch on server
|
||||||
|
uint64 Epoch = 1;
|
||||||
|
// Version defines protocol version
|
||||||
|
// TODO: not used for now, should be implemented in future
|
||||||
|
uint32 Version = 2;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue