2019-08-28 22:11:19 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package go.micro.network;
|
|
|
|
|
2019-08-30 14:29:26 +03:00
|
|
|
import "github.com/micro/go-micro/router/proto/router.proto";
|
|
|
|
|
|
|
|
// Network service is usesd to gain visibility into networks
|
|
|
|
service Network {
|
|
|
|
rpc ListRoutes(go.micro.router.Request) returns (go.micro.router.ListResponse) {};
|
|
|
|
rpc ListNodes(ListRequest) returns (ListResponse) {};
|
|
|
|
rpc ListNeighbours(ListRequest) returns (ListResponse) {};
|
|
|
|
}
|
|
|
|
|
|
|
|
// Empty request
|
|
|
|
message ListRequest {}
|
|
|
|
|
|
|
|
// ListResponse is returned by ListNodes and ListNeighbours
|
|
|
|
message ListResponse {
|
|
|
|
repeated Node nodes = 1;
|
|
|
|
}
|
|
|
|
|
2019-08-28 22:11:19 +03:00
|
|
|
// Node is network node
|
|
|
|
message Node {
|
|
|
|
// node ide
|
|
|
|
string id = 1;
|
|
|
|
// node address
|
|
|
|
string address = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Connect is sent when the node connects to the network
|
|
|
|
message Connect {
|
|
|
|
// network mode
|
|
|
|
Node node = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close is sent when the node disconnects from the network
|
|
|
|
message Close {
|
|
|
|
// network mode
|
|
|
|
Node node = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Neighbour is used to nnounce node neighbourhood
|
|
|
|
message Neighbour {
|
|
|
|
// network mode
|
|
|
|
Node node = 1;
|
|
|
|
// neighbours
|
|
|
|
repeated Node neighbours = 3;
|
|
|
|
}
|