Telnet icon indicating copy to clipboard operation
Telnet copied to clipboard

Published on Nuget at https://www.nuget.org/packages/Telnet

Results 8 Telnet issues
Sort by recently updated
recently updated
newest added

``` case (int)Commands.Dont: case (int)Commands.Wont: // We should ignore Don't\Won't because that is the default state. // Only reply on state change. This helps avoid loops. // See RFC1143: https://tools.ietf.org/html/rfc1143...

Hi all, this is not an issue but an help request from you experts. When I connect to my telnet server (linux telnetd from busybox 1.36) I have all my...

Is there a way I can read UTF8 stings? The data I am receiving contains German characters and they appear to be corrupted. Likely being converted to ASCII. Is there...

Hi there, I've a problem with the command SuppressGoAhead, if i send this command to a device's server, it crash (maybe to a bug in device) How can I avoid...

I am gettiong this error after send one command: help Unhandled exception. System.Threading.Tasks.TaskCanceledException: A task was canceled. at PrimS.Telnet.ByteStreamHandler.IsWaitForIncrementalResponse(DateTime rollingTimeout) at PrimS.Telnet.ByteStreamHandler.IsResponseAnticipated(Boolean isInitialResponseReceived, DateTime endInitialTimeout, DateTime rollingTimeout) at PrimS.Telnet.ByteStreamHandler.ReadAsync(TimeSpan timeout)...

TerminatedReadAsync(terminator, timeout) does not actually terminate the read at the inputted termintor character. For example, when the stream contains the following bytes: `\n \nXX\r\nYYYY YY YY YYYYYYY YYYYYYYY \"ZZZZ\"\r\n` and...

### Summary
 This PR introduces RFC1143 compliant telnet option negotiation support to address potential negotiation loops and improve subnegotiation handling.

 ### Background As discussed in issue #82 , I encountered...

First of all, thank you for creating and maintaining this excellent Telnet library. I've been using it successfully in a .NET Framework 4.7.2 WinForms application, and it has worked great....