Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# telnet-client
A telnet client for Pharo

This 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)*