Improve calling reliability with relay server response cache.

Co-authored-by: Cody Henthorne <cody@signal.org>
This commit is contained in:
Jim Gustafson
2025-03-18 03:50:54 -07:00
committed by Cody Henthorne
parent 92a28f7103
commit 076b47e695
3 changed files with 79 additions and 11 deletions

View File

@@ -1,6 +1,5 @@
package org.whispersystems.signalservice.api.messages.calls;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
@@ -22,6 +21,9 @@ public class TurnServerInfo {
@JsonProperty
private List<String> urlsWithIps;
@JsonProperty
private Long ttl;
public String getUsername() {
return username;
}
@@ -42,4 +44,8 @@ public class TurnServerInfo {
public List<String> getUrlsWithIps() {
return urlsWithIps;
}
public Long getTtl() {
return ttl;
};
}