mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-20 17:57:29 +00:00
1) In addition to the Recipient interface, there is now RecipientDevice. A Recipient can have multiple corresponding RecipientDevices. All addressing is done to a Recipient, but crypto sessions and transport delivery are done to RecipientDevice. 2) The Push transport handles the discovery and session setup of additional Recipient devices. 3) Some internal rejiggering of Groups.
18 lines
333 B
Java
18 lines
333 B
Java
package org.whispersystems.textsecure.push;
|
|
|
|
import java.util.List;
|
|
|
|
public class MismatchedDevices {
|
|
private List<Integer> missingDevices;
|
|
|
|
private List<Integer> extraDevices;
|
|
|
|
public List<Integer> getMissingDevices() {
|
|
return missingDevices;
|
|
}
|
|
|
|
public List<Integer> getExtraDevices() {
|
|
return extraDevices;
|
|
}
|
|
}
|