mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
14 lines
268 B
Java
14 lines
268 B
Java
package org.briarproject.api.plugins;
|
|
|
|
import org.briarproject.api.TransportId;
|
|
|
|
public interface TorConstants {
|
|
|
|
TransportId ID = new TransportId("tor");
|
|
|
|
int SOCKS_PORT = 59050;
|
|
int CONTROL_PORT = 59051;
|
|
|
|
int CONNECT_TO_PROXY_TIMEOUT = 5000; // Milliseconds
|
|
}
|