frostfs-api-go/bootstrap/service.proto

27 lines
1.1 KiB
Protocol Buffer
Raw Normal View History

2019-11-18 13:34:06 +00:00
syntax = "proto3";
package bootstrap;
option go_package = "github.com/nspcc-dev/neofs-proto/bootstrap";
import "bootstrap/types.proto";
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
option (gogoproto.stable_marshaler_all) = true;
// Bootstrap service allows neofs-node to connect to the network. Node should
// perform at least one bootstrap request in the epoch to stay in the network
// for the next epoch.
2019-11-18 13:34:06 +00:00
service Bootstrap {
// Process is method that allows to register node in the network and receive actual netmap
2019-11-18 13:34:06 +00:00
rpc Process(Request) returns (bootstrap.SpreadMap);
}
message Request {
// Type is NodeType, can be InnerRingNode (type=1) or StorageNode (type=2)
2019-11-18 13:34:06 +00:00
int32 type = 1 [(gogoproto.customname) = "Type" , (gogoproto.nullable) = false, (gogoproto.customtype) = "NodeType"];
// Info contains information about node
2019-11-18 13:34:06 +00:00
bootstrap.NodeInfo info = 2 [(gogoproto.nullable) = false];
// TTL must be larger than zero, it decreased in every neofs-node
// Deprecated: will be replaced with RequestMetaHeader (see develop branch)
2019-11-18 13:34:06 +00:00
uint32 TTL = 3;
}