本文整理汇总了Java中ch.ethz.ssh2.ConnectionInfo类的典型用法代码示例。如果您正苦于以下问题:Java ConnectionInfo类的具体用法?Java ConnectionInfo怎么用?Java ConnectionInfo使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ConnectionInfo类属于ch.ethz.ssh2包,在下文中一共展示了ConnectionInfo类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getOrWaitForConnectionInfo
import ch.ethz.ssh2.ConnectionInfo; //导入依赖的package包/类
public ConnectionInfo getOrWaitForConnectionInfo(int minKexCount) throws IOException {
synchronized (accessLock) {
while (true) {
if ((lastConnInfo != null) && (lastConnInfo.keyExchangeCounter >= minKexCount))
return lastConnInfo;
if (connectionClosed)
throw (IOException) new IOException("Key exchange was not finished, connection is closed.")
.initCause(tm.getReasonClosedCause());
try {
accessLock.wait();
} catch (InterruptedException e) {
}
}
}
}
开发者ID:fast-data-transfer,项目名称:fdt,代码行数:18,代码来源:KexManager.java
示例2: getOrWaitForConnectionInfo
import ch.ethz.ssh2.ConnectionInfo; //导入依赖的package包/类
public ConnectionInfo getOrWaitForConnectionInfo(int minKexCount) throws IOException
{
synchronized (accessLock)
{
while (true)
{
if ((lastConnInfo != null) && (lastConnInfo.keyExchangeCounter >= minKexCount))
return lastConnInfo;
if (connectionClosed)
throw (IOException) new IOException("Key exchange was not finished, connection is closed.")
.initCause(tm.getReasonClosedCause());
try
{
accessLock.wait();
}
catch (InterruptedException e)
{
Thread.currentThread().interrupt();
}
}
}
}
开发者ID:mattb243,项目名称:AmazonEC2Matlab,代码行数:25,代码来源:KexManager.java
示例3: getOrWaitForConnectionInfo
import ch.ethz.ssh2.ConnectionInfo; //导入依赖的package包/类
public ConnectionInfo getOrWaitForConnectionInfo(int minKexCount) throws IOException
{
synchronized (accessLock)
{
while (true)
{
if ((lastConnInfo != null) && (lastConnInfo.keyExchangeCounter >= minKexCount))
return lastConnInfo;
if (connectionClosed)
throw (IOException) new IOException("Key exchange was not finished, connection is closed.")
.initCause(tm.getReasonClosedCause());
try
{
accessLock.wait();
}
catch (InterruptedException e)
{
}
}
}
}
开发者ID:mattb243,项目名称:AmazonEC2Matlab,代码行数:24,代码来源:KexManager.java
示例4: getServerHostKey
import ch.ethz.ssh2.ConnectionInfo; //导入依赖的package包/类
@Override
public String getServerHostKey(String host, int port, Algorithm algorithm) throws Throwable {
ch.ethz.ssh2.Connection conn = new ch.ethz.ssh2.Connection(host, port);
conn.setServerHostKeyAlgorithms(new String[] { algorithm.signature() });
String hostKey = null;
try {
ConnectionInfo info = conn.connect();
hostKey = new String(Base64.encode(info.serverHostKey), "UTF-8");
} finally {
conn.close();
}
return hostKey;
}
开发者ID:uom-daris,项目名称:daris,代码行数:14,代码来源:GanymedSsh.java
示例5: connect
import ch.ethz.ssh2.ConnectionInfo; //导入依赖的package包/类
protected ConnectionInfo connect() throws IOException {
return conn.connect(
new CPositiveKeyVerifier(),iTo,iKexTo);
}
开发者ID:lesavsoftware,项目名称:rem-adb-exec,代码行数:5,代码来源:SSHConnection.java
示例6: getConnectionInfo
import ch.ethz.ssh2.ConnectionInfo; //导入依赖的package包/类
public ConnectionInfo getConnectionInfo(int kexNumber) throws IOException
{
return km.getOrWaitForConnectionInfo(kexNumber);
}
开发者ID:mattb243,项目名称:AmazonEC2Matlab,代码行数:5,代码来源:TransportManager.java
注:本文中的ch.ethz.ssh2.ConnectionInfo类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论