Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/estebanlm/telnet-client
A telnet client for Pharo
https://github.com/estebanlm/telnet-client
pharo telnet-client
Last synced: 6 days ago
JSON representation
A telnet client for Pharo
- Host: GitHub
- URL: https://github.com/estebanlm/telnet-client
- Owner: estebanlm
- Created: 2017-06-21T06:36:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-12-12T08:41:01.000Z (about 4 years ago)
- Last Synced: 2024-10-31T06:23:37.756Z (about 2 months ago)
- Topics: pharo, telnet-client
- Language: Smalltalk
- Size: 33.2 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# telnet-client
A telnet client for PharoThis is how you start a session (for now):
```Smalltalk
TelnetSession new
handler: (TelnetStreamHandler new
alwaysFlush;
addDecoration: TelnetLfDecoration new;
addDecoration: TelnetANSIDecoration new;
yourself);
addProtocolHandler: MUDTelnetMSDPHandler new;
when: TelnetDataReceived do: [ :ann | ann data asString crLog ];
when: MUDMSDPCommandReceived do: [ :ann | ann variable crLog ];
connectTo: 'legendsofthejedi.com' port: 5656.
```*the "MUD" part is as an example, taken from my other project [MUDClient](http://github.com/estebanlm/MUDClient)*