mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
12 lines
260 B
Java
12 lines
260 B
Java
package org.briarproject.api.invitation;
|
|
|
|
|
|
public interface InvitationConstants {
|
|
|
|
long CONNECTION_TIMEOUT = 60 * 1000; // Milliseconds
|
|
|
|
long CONFIRMATION_TIMEOUT = 60 * 1000; // Milliseconds
|
|
|
|
int CODE_BITS = 19; // Codes must fit into six decimal digits
|
|
}
|