本文整理汇总了Java中org.apache.commons.net.telnet.SuppressGAOptionHandler类的典型用法代码示例。如果您正苦于以下问题:Java SuppressGAOptionHandler类的具体用法?Java SuppressGAOptionHandler怎么用?Java SuppressGAOptionHandler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SuppressGAOptionHandler类属于org.apache.commons.net.telnet包,在下文中一共展示了SuppressGAOptionHandler类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: testRejectSGA
import org.apache.commons.net.telnet.SuppressGAOptionHandler; //导入依赖的package包/类
@Test
public void testRejectSGA() throws Exception {
final AtomicReference<Boolean> serverValue = new AtomicReference<>();
SuppressGAOptionHandler optionHandler = new SuppressGAOptionHandler(false, false, false, false);
testOptionValue(() -> new TelnetHandler() {
@Override
protected void onOpen(TelnetConnection conn) {
conn.writeWillOption(Option.SGA);
}
@Override
protected void onSGA(boolean sga) {
serverValue.set(sga);
testComplete();
}
}, optionHandler);
assertEquals(false, serverValue.get());
assertEquals(false, optionHandler.getAcceptRemote());
}
开发者ID:aeshell,项目名称:aesh-readline,代码行数:19,代码来源:TelnetHandlerTest.java
示例2: testAcceptSGA
import org.apache.commons.net.telnet.SuppressGAOptionHandler; //导入依赖的package包/类
@Test
public void testAcceptSGA() throws Exception {
final AtomicReference<Boolean> serverValue = new AtomicReference<>();
SuppressGAOptionHandler optionHandler = new SuppressGAOptionHandler(false, false, false, true);
testOptionValue(() -> new TelnetHandler() {
@Override
protected void onOpen(TelnetConnection conn) {
conn.writeWillOption(Option.SGA);
}
@Override
protected void onSGA(boolean sga) {
serverValue.set(sga);
testComplete();
}
}, optionHandler);
assertEquals(true, serverValue.get());
assertEquals(true, optionHandler.getAcceptRemote());
}
开发者ID:aeshell,项目名称:aesh-readline,代码行数:19,代码来源:TelnetHandlerTest.java
示例3: open
import org.apache.commons.net.telnet.SuppressGAOptionHandler; //导入依赖的package包/类
public void open(String host, int port) throws IOException {
// Synchronized block prevents listener thread from attempting to read input before we're ready.
synchronized (this.charBuffer) {
this.telnetClient.connect(host, port);
this.telnetClient.setKeepAlive(true);
if (this.suppressGAOptionHandler == null) {
// Only do this once.
this.suppressGAOptionHandler = new SuppressGAOptionHandler(true, true, true, true);
try {
this.telnetClient.addOptionHandler(this.suppressGAOptionHandler);
} catch (InvalidTelnetOptionException e) {
// Should never happen. Wrap it inside IOException so as not to declare another throwable.
throw new IOException(e);
}
}
this.reader = new BufferedReader(new InputStreamReader(this.telnetClient.getInputStream()));
this.outstream = new PrintStream(this.telnetClient.getOutputStream());
}
}
开发者ID:openhab,项目名称:openhab2-addons,代码行数:23,代码来源:TelnetSession.java
示例4: connect
import org.apache.commons.net.telnet.SuppressGAOptionHandler; //导入依赖的package包/类
public void connect() throws TransportException {
logger.info("Telnet Transport trying to connect...");
// Create a new telnet client
telnetClient = new TelnetClient();
// VT100 terminal type will be subnegotiated
TerminalTypeOptionHandler ttopt = new TerminalTypeOptionHandler("VT100", false, false, true, false);
// WILL SUPPRESS-GA, DO SUPPRESS-GA options
SuppressGAOptionHandler gaopt = new SuppressGAOptionHandler(true, true, true, true);
// WON'T ECHO, DON'T ECHO
EchoOptionHandler echoopt = new EchoOptionHandler();
try {
// set telnet client options
telnetClient.addOptionHandler(ttopt);
telnetClient.addOptionHandler(gaopt);
telnetClient.addOptionHandler(echoopt);
// connect
telnetClient.connect(host, Integer.parseInt(port));
// set the read timeout
telnetClient.setSoTimeout(READ_TIMEOUT);
// Initialize the print writer
outPrint = new PrintWriter(telnetClient.getOutputStream(), true);
} catch (Exception e) {
e.printStackTrace();
throw new TransportException("Could not connect, unable to open telnet session " + e.getMessage());
}
}
开发者ID:dana-i2cat,项目名称:opennaas-routing-nfv,代码行数:33,代码来源:TelnetTransport.java
示例5: connect
import org.apache.commons.net.telnet.SuppressGAOptionHandler; //导入依赖的package包/类
public void connect() throws TransportException {
logger.info("Telnet Transport trying to connect...");
//Create a new telnet client
telnetClient = new TelnetClient();
//VT100 terminal type will be subnegotiated
TerminalTypeOptionHandler ttopt = new TerminalTypeOptionHandler("VT100", false, false, true, false);
//WILL SUPPRESS-GA, DO SUPPRESS-GA options
SuppressGAOptionHandler gaopt = new SuppressGAOptionHandler(true, true, true, true);
//WON'T ECHO, DON'T ECHO
EchoOptionHandler echoopt = new EchoOptionHandler();
try{
//set telnet client options
telnetClient.addOptionHandler(ttopt);
telnetClient.addOptionHandler(gaopt);
telnetClient.addOptionHandler(echoopt);
//connect
telnetClient.connect(host, Integer.parseInt(port));
//set the read timeout
telnetClient.setSoTimeout(READ_TIMEOUT);
//Initialize the print writer
outPrint=new PrintWriter(telnetClient.getOutputStream(),true);
}catch(Exception e){
e.printStackTrace();
throw new TransportException("Could not connect, unable to open telnet session "+ e.getMessage());
}
}
开发者ID:CRFS-bpeng,项目名称:OpenNaaS-0.14-Marketplace,代码行数:33,代码来源:TelnetTransport.java
注:本文中的org.apache.commons.net.telnet.SuppressGAOptionHandler类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论