fix: route WebRTC ICE without requester id

This commit is contained in:
rustdesk
2026-05-18 18:46:58 +08:00
parent 9277af2452
commit 1998a198ec
+3 -3
View File
@@ -66,7 +66,7 @@ message PunchHole {
ControlPermissions control_permissions = 8; ControlPermissions control_permissions = 8;
ControlledContext controlled_context = 9; ControlledContext controlled_context = 9;
string webrtc_sdp_offer = 10; string webrtc_sdp_offer = 10;
string requester_id = 11; reserved 11;
} }
message TestNatRequest { message TestNatRequest {
@@ -247,8 +247,8 @@ message HttpProxyResponse {
} }
message IceCandidate { message IceCandidate {
string from_id = 1; string id = 1;
string to_id = 2; bytes socket_addr = 2;
string session_key = 3; string session_key = 3;
string candidate = 4; string candidate = 4;
} }