Package: inet.applications.tcpapp
TelnetClientApp
compound moduleThis client application contains a configurable pre-composed telnet traffic source and traffic sink.
<b>See also:</b> ~TelnetServerApp
Usage diagram
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Properties
| Name | Value | Description |
|---|---|---|
| display | i=block/app |
Gates
| Name | Direction | Size | Description |
|---|---|---|---|
| socketIn | input | ||
| socketOut | output |
Unassigned submodule parameters
| Name | Type | Default value | Description |
|---|---|---|---|
| io.displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
| io.localAddress | string | "" | |
| io.localPort | int | -1 | |
| io.connectAddress | string | ||
| io.connectPort | int | ||
| io.autoRead | bool | true |
Whether to use "autoread" or "explicit-read" mode for TCP connection |
| io.readSize | int | -1B |
Used only with autoRead==false |
| io.readDelay | double | -1s |
Used only with autoRead==false; delay for issuing a READ command after the previous READ was satisfied; -1 means immediately, 0 means zero delay |
Source code
// // This client application contains a configurable pre-composed telnet traffic // source and traffic sink. // // @see ~TelnetServerApp // module TelnetClientApp like IApp { parameters: @display("i=block/app"); gates: input socketIn; output socketOut; submodules: characterProducer: <default("ActivePacketSource")> like IActivePacketSource { parameters: packetLength = 1B; packetData = intuniform(97, 122); // Lower case ASCII characters productionInterval = uniform(0.1s, 0.2s); // Typing speed between 5 and 10 characters per second @display("p=100,100"); } enterProducer: <default("ActivePacketSource")> like IActivePacketSource { parameters: packetLength = 1B; packetData = 13; // Enter character productionInterval = 0.1s; @display("p=300,100"); } emptyProducer: <default("EmptyPacketSource")> like IActivePacketSource { parameters: @display("p=500,100"); } scheduler: <default("MarkovScheduler")> like IPacketScheduler { parameters: transitionProbabilities = "0 1 0 0 0 1 1 0 0"; // Character -> enter -> wait -> character waitIntervals = "uniform(0,3) 0 uniform(10,30)"; @display("p=300,200"); } consumer: <default("PassivePacketSink")> like IPassivePacketSink { parameters: @display("p=100,200"); } io: TcpClientSocketIo { parameters: @display("p=200,300"); } connections: characterProducer.out --> scheduler.in++; enterProducer.out --> scheduler.in++; emptyProducer.out --> scheduler.in++; scheduler.out --> { @display("m=s"); } --> io.trafficIn; io.trafficOut --> { @display("m=s"); } --> consumer.in; io.socketOut --> { @display("m=s"); } --> socketOut; socketIn --> { @display("m=s"); } --> io.socketIn; }File: src/inet/applications/tcpapp/TelnetClientApp.ned