reiver / go-telnet

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, including support for "middleware"; TELNETS is secure TELNET, with the TELNET protocol over a secured TLS (or SSL) connection.
https://godoc.org/github.com/reiver/go-telnet
MIT License
266 stars 83 forks source link

can support Cluster address? #18

Open kaydxh opened 3 years ago

kaydxh commented 3 years ago
        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)
    }