mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-27 12:15:50 +01:00
Improve calling reliability with relay server response cache.
Co-authored-by: Cody Henthorne <cody@signal.org>
This commit is contained in:
committed by
Cody Henthorne
parent
92a28f7103
commit
076b47e695
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user