mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-26 03:40:56 +01:00
1) Add encryption support for the transport layer. This obscures metadata from the push messaging provider. 2) Better support the direction multiple destination messages is headed (one unique message per recipient).
10 lines
311 B
Java
10 lines
311 B
Java
package org.whispersystems.textsecure.push;
|
|
|
|
|
|
public interface PushMessage {
|
|
public static final int TYPE_MESSAGE_PLAINTEXT = 0;
|
|
public static final int TYPE_MESSAGE_CIPHERTEXT = 1;
|
|
public static final int TYPE_MESSAGE_KEY_EXCHANGE = 2;
|
|
public static final int TYPE_MESSAGE_PREKEY_BUNDLE = 3;
|
|
}
|