mirror of
https://github.com/rustdesk/rustdesk-server.git
synced 2026-04-17 13:50:03 +00:00
prototype...
This commit is contained in:
9
protos/message.proto
Normal file
9
protos/message.proto
Normal file
@@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
package hbb;
|
||||
|
||||
message Message {
|
||||
string addr = 1; // hbb address
|
||||
oneof union {
|
||||
bytes socket_addr = 6;
|
||||
}
|
||||
}
|
||||
2
protos/mod.rs
Normal file
2
protos/mod.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
mod message;
|
||||
pub use message::*;
|
||||
Reference in New Issue
Block a user