micro/network/proto/network.proto

29 lines
552 B
Protocol Buffer
Raw Normal View History

2019-07-01 13:55:15 +03:00
syntax = "proto3";
package go.micro.network;
// A connect message is for connecting to the network
message Connect {
// Lease specifies an existing lease to indicate
// we don't need a new address, we just want to
// establish a link.
Lease lease = 1;
}
// A lease is returned to anyone attempting to connect.
message Lease {
// unique lease id
string id = 1;
// timestamp of lease
int64 timestamp = 2;
// the node
Node node = 3;
}
// A node is the network node
message Node {
string id = 1;
string address = 2;
2019-07-02 01:12:05 +03:00
string network = 3;
2019-07-01 13:55:15 +03:00
}