当前位置: 首页>>代码示例>>Java>>正文


Java CellImpl类代码示例

本文整理汇总了Java中com.subgraph.orchid.circuits.cells.CellImpl的典型用法代码示例。如果您正苦于以下问题:Java CellImpl类的具体用法?Java CellImpl怎么用?Java CellImpl使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


CellImpl类属于com.subgraph.orchid.circuits.cells包,在下文中一共展示了CellImpl类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: receiveRelayResponse

import com.subgraph.orchid.circuits.cells.CellImpl; //导入依赖的package包/类
public RelayCell receiveRelayResponse(int expectedCommand, Router extendTarget) {
	final RelayCell cell = circuit.receiveRelayCell();
	if(cell == null) {
		throw new TorException("Timeout building circuit");
	}
	final int command = cell.getRelayCommand();
	if(command == RelayCell.RELAY_TRUNCATED) {
		final int code = cell.getByte() & 0xFF;
		final String msg = CellImpl.errorToDescription(code);
		final String source = nodeToName(cell.getCircuitNode());
		if(code == Cell.ERROR_PROTOCOL) {
			logProtocolViolation(source, extendTarget);
		}
		throw new TorException("Error from ("+ source +") while extending to ("+ extendTarget.getNickname() + "): "+ msg);
	} else if(command != expectedCommand) {
		final String expected = RelayCellImpl.commandToDescription(expectedCommand);
		final String received = RelayCellImpl.commandToDescription(command);
		throw new TorException("Received incorrect extend response, expecting "+ expected + " but received "+ received);
	} else {
		return cell;
	}
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:23,代码来源:CircuitExtender.java

示例2: sendVersions

import com.subgraph.orchid.circuits.cells.CellImpl; //导入依赖的package包/类
protected  void sendVersions(int... versions) throws ConnectionIOException {
	final Cell cell = CellImpl.createVarCell(0, Cell.VERSIONS, versions.length * 2);
	for(int v: versions) {
		cell.putShort(v);
	}
	connection.sendCell(cell);
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:8,代码来源:ConnectionHandshake.java

示例3: sendNetinfo

import com.subgraph.orchid.circuits.cells.CellImpl; //导入依赖的package包/类
protected void sendNetinfo() throws ConnectionIOException {
	final Cell cell = CellImpl.createCell(0, Cell.NETINFO);
	putTimestamp(cell);
	putIPv4Address(cell, connection.getRouter().getAddress());
	putMyAddresses(cell);
	connection.sendCell(cell);
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:8,代码来源:ConnectionHandshake.java

示例4: sendDestroyCell

import com.subgraph.orchid.circuits.cells.CellImpl; //导入依赖的package包/类
void sendDestroyCell(int reason) {
	Cell destroy = CellImpl.createCell(circuitId, Cell.DESTROY);
	destroy.putByte(reason);
	try {
		connection.sendCell(destroy);
	} catch (ConnectionIOException e) {
		logger.warning("Connection IO error sending DESTROY cell: "+ e.getMessage());
	}
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:10,代码来源:CircuitIO.java

示例5: sendCreateFastCell

import com.subgraph.orchid.circuits.cells.CellImpl; //导入依赖的package包/类
private void sendCreateFastCell(TorCreateFastKeyAgreement kex) {
	final Cell cell = CellImpl.createCell(circuit.getCircuitId(), Cell.CREATE_FAST);
	cell.putByteArray(kex.createOnionSkin());
	circuit.sendCell(cell);
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:6,代码来源:CircuitExtender.java

示例6: processDestroyCell

import com.subgraph.orchid.circuits.cells.CellImpl; //导入依赖的package包/类
private void processDestroyCell(int reason) {
	logger.fine("DESTROY cell received ("+ CellImpl.errorToDescription(reason) +") on "+ circuit);
	destroyCircuit();
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:5,代码来源:CircuitIO.java


注:本文中的com.subgraph.orchid.circuits.cells.CellImpl类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。