This code has been moved to a GitHub repository with the corresponding license. https://github.com/UngarMax/TelnetServer
Last active
September 23, 2020 18:08
-
-
Save robertripoll/6394321573dc0791dff9 to your computer and use it in GitHub Desktop.
Telnet Server C#
hi, i want ubiquit system reboot one click by telnetserver. can you tell me how make it c# code?
Hi. Thanks for the code. Would you mind creating a repo and attach a license to it so that people can use it without fear? Appreciated!
This gist has been moved to a GitHub repository: https://github.com/UngarMax/TelnetServer
Hi. Thanks for the code. Would you mind creating a repo and attach a license to it so that people can use it without fear? Appreciated!
@ychen5osram Done! https://github.com/UngarMax/TelnetServer
Hi. Thanks for the code. Would you mind creating a repo and attach a license to it so that people can use it without fear? Appreciated!
@ychen5osram Done! https://github.com/UngarMax/TelnetServer
thx a lot!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
+1 Nice code, thanks. What about to convert it to a small repo? Also, I agree with @jvanlangen that the methods starting with lower case are not according to C# standard.
Also from my cygwin client I had to change:
|| (data[0] == 0x0D && data[1] == 0x00))
if (data[0] == 0x08 || data[0] == 0x7F)