rustdesk/libs/hbb_common/protos/discovery.proto

16 lines
263 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package discovery;
import "base_proto.proto";
message Discovery {
base.PeerInfo peer = 1;
/// response port for current listening port(udp for now)
int32 port = 2;
}
message DiscoveryBack {
string id = 1;
base.PeerInfo peer = 2;
}