chzyer / readline

Readline is a pure go(golang) implementation for GNU-Readline kind library
MIT License
2.06k stars 273 forks source link

readline.ListenRemote and telnet connection #205

Open lukasz-grabski opened 2 years ago

lukasz-grabski commented 2 years ago

Hi,

I'm using readline.ListenRemote to create remote accessible shell with readline but I've noticed it does not really play nice with telnet - when I make new telnet connection I'm not getting predefined prompt by just a default telnet welcome screen:

Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.

The same is with netcat. I can connect to it only using readline.DialRemote :(

I really appreciate any help ...