Tcpsock
Package tcpsock provides easy to use interfaces for TCP I/O, including both TcpServer and TcpClient.
Install / Use
/learn @ecofast/TcpsockREADME
tcpsock
Package tcpsock provides easy to use interfaces for TCP I/O.</br></br>
How to use</br>
server:
server := tcpsock.NewTcpServer(listenPort, acceptTimeout, onConnConnect, onConnClose, onProtocol)
go server.Serve()
<-shutdown
server.Close()
client:
client := tcpsock.NewTcpClient(ServerAddr, onConnect, onClose, onProtocol)
go client.Run()
<-shutdown
client.Close()
