Skip to content

estebanlm/telnet-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

telnet-client

A telnet client for Pharo

This is how you start a session (for now):

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

About

A telnet client for Pharo

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published