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

Is it possible to use telsh to implement a command with additional arguments? I could not find an example for this usecase. Is there one?

My telnet client is connecting to a non-go-telnet server and uses the basic client code provided in the documentation example. Connecting to my server with a standard telnet client gets...

https://github.com/reiver/go-telnet/blob/9ff0b2ab096ebe42bf8e2ffd1366e7ed2223b04c/server.go#L179 No needed coz of `defer c.Close()` earlier

Until the array data is filled, the function Read will not return data.

I try to check Telnet server is running or not in my project. I am testing on Docker image. I used `DialTo()` function with passing address like `127.0.0.1:23`. It seems...

Goroutines created in connect, transfer data from a handler to telnet client. However, as there's no synchronization between the goroutine and the telnet server, there's a case where the server...

``` var handler telnet.Handler = telnet.EchoHandler err := telnet.ListenAndServe("192.168.1.10:5555,192.168.1.11:5556,192.168.1.12:5557", handler) if nil != err { //@TODO: Handle this error better. panic(err) } ```

Hello Please provide example script for telnet client, which send some strings, then get answer and check it for some conditions? Thank you very much!

from handler i can't put 255 253 31

What is the best way to log IPs that connect to the telnet server. I've experimented with various ways but have been unable to do it so far. Here's a...