mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +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
|
|
}
|