Uses of Class
io.vertx.ext.shell.term.TelnetTermOptions
-
Packages that use TelnetTermOptions Package Description io.vertx.ext.shell io.vertx.ext.shell.term -
-
Uses of TelnetTermOptions in io.vertx.ext.shell
Methods in io.vertx.ext.shell that return TelnetTermOptions Modifier and Type Method Description TelnetTermOptions
ShellServiceOptions. getTelnetOptions()
Methods in io.vertx.ext.shell with parameters of type TelnetTermOptions Modifier and Type Method Description ShellServiceOptions
ShellServiceOptions. setTelnetOptions(TelnetTermOptions telnetOptions)
Set the Telnet options, if the option is null, Telnet will not be started. -
Uses of TelnetTermOptions in io.vertx.ext.shell.term
Methods in io.vertx.ext.shell.term that return TelnetTermOptions Modifier and Type Method Description TelnetTermOptions
TelnetTermOptions. addCrlPath(String crlPath)
TelnetTermOptions
TelnetTermOptions. addCrlValue(Buffer crlValue)
TelnetTermOptions
TelnetTermOptions. addEnabledCipherSuite(String suite)
TelnetTermOptions
TelnetTermOptions. setAcceptBacklog(int acceptBacklog)
TelnetTermOptions
TelnetTermOptions. setCharset(String charset)
Set the charset to use when binary mode is active, seesetInBinary(boolean)
andsetOutBinary(boolean)
.TelnetTermOptions
TelnetTermOptions. setHost(String host)
TelnetTermOptions
TelnetTermOptions. setIdleTimeout(int idleTimeout)
TelnetTermOptions
TelnetTermOptions. setInBinary(boolean inBinary)
Set the telnet connection to negociate binary data format when receiving from the client, the default value is true.TelnetTermOptions
TelnetTermOptions. setIntputrc(String intputrc)
The path of the inputrc config.TelnetTermOptions
TelnetTermOptions. setOutBinary(boolean outBinary)
Set the telnet connection to negociate binary data format when sending to the client, the default value is true.TelnetTermOptions
TelnetTermOptions. setPort(int port)
TelnetTermOptions
TelnetTermOptions. setReceiveBufferSize(int receiveBufferSize)
TelnetTermOptions
TelnetTermOptions. setReuseAddress(boolean reuseAddress)
TelnetTermOptions
TelnetTermOptions. setSendBufferSize(int sendBufferSize)
TelnetTermOptions
TelnetTermOptions. setSoLinger(int soLinger)
TelnetTermOptions
TelnetTermOptions. setSsl(boolean ssl)
TelnetTermOptions
TelnetTermOptions. setTcpKeepAlive(boolean tcpKeepAlive)
TelnetTermOptions
TelnetTermOptions. setTcpNoDelay(boolean tcpNoDelay)
TelnetTermOptions
TelnetTermOptions. setTrafficClass(int trafficClass)
Methods in io.vertx.ext.shell.term with parameters of type TelnetTermOptions Modifier and Type Method Description static TermServer
TermServer. createTelnetTermServer(Vertx vertx, TelnetTermOptions options)
Create a term server for the Telnet protocol.Constructors in io.vertx.ext.shell.term with parameters of type TelnetTermOptions Constructor Description TelnetTermOptions(TelnetTermOptions other)
-