mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-03-13 00:01:00 +03:00
11 lines
193 B
Protocol Buffer
11 lines
193 B
Protocol Buffer
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;
|
|
}
|