From 15de641fb10a48db1d43d03684e5b2ae3f685261 Mon Sep 17 00:00:00 2001 From: Evgeniy Kulikov Date: Wed, 15 Apr 2020 12:24:40 +0300 Subject: [PATCH] regenerate docs --- proto-docs/bootstrap.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/proto-docs/bootstrap.md b/proto-docs/bootstrap.md index 737e085..80aa109 100644 --- a/proto-docs/bootstrap.md +++ b/proto-docs/bootstrap.md @@ -62,11 +62,25 @@ Process is method that allows to register node in the network and receive actual | ----- | ---- | ----- | ----------- | | type | [int32](#int32) | | Type is NodeType, can be InnerRingNode (type=1) or StorageNode (type=2) | | info | [NodeInfo](#bootstrap.NodeInfo) | | Info contains information about node | +| state | [Request.State](#bootstrap.Request.State) | | State contains node status | | Meta | [service.RequestMetaHeader](#service.RequestMetaHeader) | | RequestMetaHeader contains information about request meta headers (should be embedded into message) | | Verify | [service.RequestVerificationHeader](#service.RequestVerificationHeader) | | RequestVerificationHeader is a set of signatures of every NeoFS Node that processed request (should be embedded into message) | + + + +### Request.State +Node state + +| Name | Number | Description | +| ---- | ------ | ----------- | +| Unknown | 0 | used by default | +| Online | 1 | used to inform that node online | +| Offline | 2 | used to inform that node offline | + +