Jeff Quast
Jeff Quast
Thank you! The default server hardcodes awaiting a few default negotiations but I’d like to change that, in any case, you can use a derived and modified TelnetServer with a...
Also I note that the server has “recv IAC WONT CHARSET”, and, in that case, we should stop waiting for pending negotiation, this is a bug that I can hopefully...
Please try to change this line, https://github.com/jquast/telnetlib3/blob/ee95de3568401206607d881b8699c922e3b20e0b/telnetlib3/server.py#LL135C2-L135C2, line 135 in server.py, in method `check_negotiation()`: ``` - result = self._check_encoding() + result = True ``` I believe this should disregard any...
I'm working on this in `develop` branch, actually. Thank you for mentioning it !
This is addressed in develop branch as, https://github.com/jquast/telnetlib3/blob/develop/telnetlib3/client.py#L237-L240 and, https://github.com/jquast/telnetlib3/blob/develop/telnetlib3/client_shell.py#L11-L15 You may still use windows OS for writing telnet client scripts (or "shell") for automation/tests, but you will not be...
Hello @alex4200, I understand the need to write code **without** asyncio and I would like to do that. In the mean time, I suggest https://github.com/shmup/miniboa for a server without asyncio,...
Thank you!!
Sorry for being so late to the conversation, but I am interested in joining forces :) And I do have time for this etched out in the coming weeks. As...
If there was something both of our packages could use, it would be "well-structured unicode data", the TXT files well-parsed and annotated, with the copyrights and dates and comments if...
Just to write to thank you for the specification, I also have worked hard to publish a terse specification for wcwidth, https://wcwidth.readthedocs.io/en/latest/specs.html And I have also implemented automatic testing of...