mirror of
https://github.com/rustdesk/rustdesk-server.git
synced 2025-07-03 00:05:47 +00:00
10 lines
134 B
Protocol Buffer
10 lines
134 B
Protocol Buffer
syntax = "proto3";
|
|
package hbb;
|
|
|
|
message Message {
|
|
string addr = 1; // hbb address
|
|
oneof union {
|
|
bytes socket_addr = 6;
|
|
}
|
|
}
|