aboutsummaryrefslogtreecommitdiffhomepage
path: root/libs/hbb_common/protos
diff options
context:
space:
mode:
authorrustdesk <[email protected]>2022-07-13 00:22:45 +0800
committerrustdesk <[email protected]>2022-07-13 00:22:45 +0800
commit39153ce1472417be101051baecb452da467f2652 (patch)
tree7ef2ed6d8d28a80fa3a7333460d7211a48b6e4a2 /libs/hbb_common/protos
parent57cbac7079a6132388d81d3d76a39e6cd700baab (diff)
downloadrustdesk-server-39153ce1472417be101051baecb452da467f2652.tar.gz
rustdesk-server-39153ce1472417be101051baecb452da467f2652.zip
fix slow connection, '/' in pub key, and hbbr wait for key, and possible1.1.6
solution for https://github.com/rustdesk/rustdesk-server/issues/24
Diffstat (limited to 'libs/hbb_common/protos')
-rw-r--r--libs/hbb_common/protos/message.proto6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/hbb_common/protos/message.proto b/libs/hbb_common/protos/message.proto
index f95007d..15ee971 100644
--- a/libs/hbb_common/protos/message.proto
+++ b/libs/hbb_common/protos/message.proto
@@ -23,6 +23,7 @@ message VideoFrame {
RGB rgb = 7;
YUV yuv = 8;
}
+ int64 timestamp = 9;
}
message IdPk {
@@ -441,7 +442,10 @@ message AudioFormat {
uint32 channels = 2;
}
-message AudioFrame { bytes data = 1; }
+message AudioFrame {
+ bytes data = 1;
+ int64 timestamp = 2;
+}
message Misc {
oneof union {