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
263 stars 83 forks source link

Allow arbitrary connection protocols #26

Open calvincramer opened 9 months ago

calvincramer commented 9 months ago

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 for my use case.