go-telnet icon indicating copy to clipboard operation
go-telnet copied to clipboard

Package telnet provides TELNET and TELNETS client and server implementations, for the Go programming language, in a style similar to the "net/http" library that is part of the Go standard library, inc...

Results 20 go-telnet issues
Sort by recently updated
recently updated
newest added

@reiver **Please give a tip, how can I see the response of the remote server that is accepting my commands.** **I don't know how to debug it using your repo.**...

For a personal project I needed that telnet should quickly connect or fail after a timeout. I added two new methods to allow to specify Timeout using `time.Duration`.

Now I use telnet.DialTo to get a conn.I use this conn to Read bytes using the function conn.Read().However,it is blocked.How can I solve this problem,thank you! Idon't know how many...

Hi! I'm trying to use your library in my project. I'm working on Telnet Chat and I'm using ShellHandler for that. The issue which I have is that Server doesn't...

Hi! I tried to use your code and it kept doing blocking reads. Here's a fix. I only gofmt'd the files I changed, and I kept the format changes in...

Hello, Thanks for making this project. Can you help give me an example of linking a external applications standard out to this server. I have a telnet server in CYGWIN...

I send stream output to stdout in shellHandler. So when the conn is closed, I need to terminate the handler function. So How can the server detect conn is closed?...

Add `Dial` functions that allow user to set the network protocol, rather than forced to use TCPIP. I verified this works over unix sockets, which is the functionality I needed...