本文整理汇总了Java中com.subgraph.orchid.TorConfig类的典型用法代码示例。如果您正苦于以下问题:Java TorConfig类的具体用法?Java TorConfig怎么用?Java TorConfig使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TorConfig类属于com.subgraph.orchid包,在下文中一共展示了TorConfig类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: CircuitManagerImpl
import com.subgraph.orchid.TorConfig; //导入依赖的package包/类
public CircuitManagerImpl(TorConfig config, DirectoryDownloaderImpl directoryDownloader, Directory directory, ConnectionCache connectionCache, TorInitializationTracker initializationTracker) {
this.config = config;
this.directory = directory;
this.connectionCache = connectionCache;
this.pathChooser = CircuitPathChooser.create(config, directory);
if(config.getUseEntryGuards() || config.getUseBridges()) {
this.pathChooser.enableEntryGuards(new EntryGuards(config, connectionCache, directoryDownloader, directory));
}
this.pendingExitStreams = new PendingExitStreams(config);
this.circuitCreationTask = new CircuitCreationTask(config, directory, connectionCache, pathChooser, this, initializationTracker);
this.activeCircuits = new HashSet<CircuitImpl>();
this.cleanInternalCircuits = new LinkedList<InternalCircuit>();
this.random = new TorRandom();
this.initializationTracker = initializationTracker;
this.hiddenServiceManager = new HiddenServiceManager(config, directory, this);
directoryDownloader.setCircuitManager(this);
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:20,代码来源:CircuitManagerImpl.java
示例2: ConnectionImpl
import com.subgraph.orchid.TorConfig; //导入依赖的package包/类
public ConnectionImpl(TorConfig config, SSLSocket socket, Router router, TorInitializationTracker tracker, boolean isDirectoryConnection) {
this.config = config;
this.socket = socket;
this.router = router;
this.circuitMap = new HashMap<Integer, Circuit>();
this.readCellsThread = new Thread(createReadCellsRunnable());
this.readCellsThread.setDaemon(true);
this.connectionControlCells = new LinkedBlockingQueue<Cell>();
this.initializationTracker = tracker;
this.isDirectoryConnection = isDirectoryConnection;
initializeCurrentCircuitId();
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:13,代码来源:ConnectionImpl.java
示例3: createHandshake
import com.subgraph.orchid.TorConfig; //导入依赖的package包/类
static ConnectionHandshake createHandshake(TorConfig config, ConnectionImpl connection, SSLSocket socket) throws ConnectionHandshakeException {
if(config.getHandshakeV3Enabled() && ConnectionHandshakeV3.sessionSupportsHandshake(socket.getSession())) {
return new ConnectionHandshakeV3(connection, socket);
} else if(config.getHandshakeV2Enabled()) {
return new ConnectionHandshakeV2(connection, socket);
} else {
throw new ConnectionHandshakeException("No valid handshake type available for this connection");
}
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:11,代码来源:ConnectionHandshake.java
示例4: DirectoryImpl
import com.subgraph.orchid.TorConfig; //导入依赖的package包/类
public DirectoryImpl(TorConfig config, DirectoryStore customDirectoryStore) {
store = (customDirectoryStore == null) ? (new DirectoryStoreImpl(config)) : (customDirectoryStore);
this.config = config;
stateFile = new StateFile(store, this);
microdescriptorCache = createMicrodescriptorCache(store);
basicDescriptorCache = createBasicDescriptorCache(store);
routersByIdentity = new HashMap<HexDigest, RouterImpl>();
routersByNickname = new HashMap<String, RouterImpl>();
directoryCaches = new RandomSet<RouterImpl>();
requiredCertificates = new HashSet<ConsensusDocument.RequiredCertificate>();
consensusChangedManager = new EventManager();
random = new TorRandom();
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:14,代码来源:DirectoryImpl.java
示例5: DirectoryDownloadTask
import com.subgraph.orchid.TorConfig; //导入依赖的package包/类
DirectoryDownloadTask(TorConfig config, Directory directory, DirectoryDownloader downloader) {
this.config = config;
this.directory = directory;
this.downloader = downloader;
this.random = new TorRandom();
this.outstandingDescriptorTasks = new AtomicInteger();
this.descriptorProcessor = new DescriptorProcessor(config, directory);
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:9,代码来源:DirectoryDownloadTask.java
示例6: Bridges
import com.subgraph.orchid.TorConfig; //导入依赖的package包/类
Bridges(TorConfig config, DirectoryDownloader directoryDownloader) {
this.config = config;
this.directoryDownloader = directoryDownloader;
this.bridgeRouters = new HashSet<BridgeRouterImpl>();
this.random = new TorRandom();
this.lock = new Object();
this.outstandingDownloadTasks = new AtomicInteger();
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:9,代码来源:Bridges.java
示例7: EntryGuards
import com.subgraph.orchid.TorConfig; //导入依赖的package包/类
public EntryGuards(TorConfig config, ConnectionCache connectionCache, DirectoryDownloader directoryDownloader, Directory directory) {
this.config = config;
this.random = new TorRandom();
this.nodeChooser = new CircuitNodeChooser(config, directory);
this.connectionCache = connectionCache;
this.directory = directory;
this.pendingProbes = new HashSet<GuardEntry>();
this.bridges = new Bridges(config, directoryDownloader);
this.lock = new Object();
this.executor = Threading.newPool("EntryGuards worker");
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:12,代码来源:EntryGuards.java
示例8: HiddenServiceManager
import com.subgraph.orchid.TorConfig; //导入依赖的package包/类
public HiddenServiceManager(TorConfig config, Directory directory, CircuitManagerImpl circuitManager) {
this.config = config;
this.directory = directory;
this.hiddenServices = new HashMap<String, HiddenService>();
this.hsDirectories = new HSDirectories(directory);
this.circuitManager = circuitManager;
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:8,代码来源:HiddenServiceManager.java
示例9: CircuitCreationTask
import com.subgraph.orchid.TorConfig; //导入依赖的package包/类
CircuitCreationTask(TorConfig config, Directory directory, ConnectionCache connectionCache, CircuitPathChooser pathChooser, CircuitManagerImpl circuitManager, TorInitializationTracker initializationTracker) {
this.config = config;
this.directory = directory;
this.connectionCache = connectionCache;
this.circuitManager = circuitManager;
this.initializationTracker = initializationTracker;
this.pathChooser = pathChooser;
this.executor = Threading.newPool("CircuitCreationTask worker");
this.buildHandler = createCircuitBuildHandler();
this.internalBuildHandler = createInternalCircuitBuildHandler();
this.predictor = new CircuitPredictor();
this.lastNewCircuit = new AtomicLong();
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:14,代码来源:CircuitCreationTask.java
示例10: TorConfigNodeFilter
import com.subgraph.orchid.TorConfig; //导入依赖的package包/类
TorConfigNodeFilter(TorConfig config) {
this.filters = new HashMap<String, ConfigNodeFilter>();
addFilter(filters, EXCLUDE_NODES_FILTER, config.getExcludeNodes());
addFilter(filters, EXCLUDE_EXIT_NODES_FILTER, config.getExcludeExitNodes());
addFilter(filters, ENTRY_NODES_FILTER, config.getEntryNodes());
addFilter(filters, EXIT_NODES_FILTER, config.getExitNodes());
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:8,代码来源:TorConfigNodeFilter.java
示例11: getAnnotationForVariable
import com.subgraph.orchid.TorConfig; //导入依赖的package包/类
private ConfigVar getAnnotationForVariable(String varName) {
final String getName = "get"+ varName;
for(Method m: TorConfig.class.getDeclaredMethods()) {
if(getName.equals(m.getName())) {
return m.getAnnotation(TorConfig.ConfigVar.class);
}
}
return null;
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:10,代码来源:TorConfigProxy.java
示例12: parseAutoBool
import com.subgraph.orchid.TorConfig; //导入依赖的package包/类
private TorConfig.AutoBoolValue parseAutoBool(String value) {
if("auto".equalsIgnoreCase(value)) {
return AutoBoolValue.AUTO;
} else if("true".equalsIgnoreCase(value)) {
return AutoBoolValue.TRUE;
} else if("false".equalsIgnoreCase(value)) {
return AutoBoolValue.FALSE;
} else {
throw new IllegalArgumentException("Could not parse AutoBool value "+ value);
}
}
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:12,代码来源:TorConfigParser.java
示例13: EntryGuards
import com.subgraph.orchid.TorConfig; //导入依赖的package包/类
public EntryGuards(TorConfig config, ConnectionCache connectionCache, DirectoryDownloader directoryDownloader, Directory directory) {
this.config = config;
this.random = new TorRandom();
this.nodeChooser = new CircuitNodeChooser(config, directory);
this.connectionCache = connectionCache;
this.directory = directory;
this.pendingProbes = new HashSet<GuardEntry>();
this.bridges = new Bridges(config, directoryDownloader);
this.lock = new Object();
this.executor = Executors.newCachedThreadPool();
}
开发者ID:HashEngineering,项目名称:quarkcoinj,代码行数:12,代码来源:EntryGuards.java
注:本文中的com.subgraph.orchid.TorConfig类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论