mirror of
https://github.com/rustdesk/hbb_common.git
synced 2025-07-01 23:47:24 +00:00
feat: add camera connection type
This commit is contained in:
parent
e7d210e03a
commit
f8fbf40f98
@ -62,6 +62,8 @@ message FileTransfer {
|
|||||||
bool show_hidden = 2;
|
bool show_hidden = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message ViewCamera {}
|
||||||
|
|
||||||
message OSLogin {
|
message OSLogin {
|
||||||
string username = 1;
|
string username = 1;
|
||||||
string password = 2;
|
string password = 2;
|
||||||
@ -76,6 +78,7 @@ message LoginRequest {
|
|||||||
oneof union {
|
oneof union {
|
||||||
FileTransfer file_transfer = 7;
|
FileTransfer file_transfer = 7;
|
||||||
PortForward port_forward = 8;
|
PortForward port_forward = 8;
|
||||||
|
ViewCamera view_camera = 15;
|
||||||
}
|
}
|
||||||
bool video_ack_required = 9;
|
bool video_ack_required = 9;
|
||||||
uint64 session_id = 10;
|
uint64 session_id = 10;
|
||||||
|
@ -11,6 +11,7 @@ enum ConnType {
|
|||||||
FILE_TRANSFER = 1;
|
FILE_TRANSFER = 1;
|
||||||
PORT_FORWARD = 2;
|
PORT_FORWARD = 2;
|
||||||
RDP = 3;
|
RDP = 3;
|
||||||
|
VIEW_CAMERA = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
message RegisterPeerResponse { bool request_pk = 2; }
|
message RegisterPeerResponse { bool request_pk = 2; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user