Package tcp_server created to help build TCP servers faster.
go get -u github.com/firstrow/tcp_server@latestNOTICE: OnNewMessage callback will receive new message only if it's ending with \n
package main import "github.com/firstrow/tcp_server" func main() { server := tcp_server.New("localhost:9999") server.OnNewClient(func(c *tcp_server.Client) { // new client connected // lets send some message c.Send("Hello") }) server.OnNewMessage(func(c *tcp_server.Client, message string) { // new message received }) server.OnClientConnectionClosed(func(c *tcp_server.Client, err error) { // connection with client lost }) server.Listen() }To hack on this project:
- Install as usual (
go get -u github.com/firstrow/tcp_server) - Create your feature branch (
git checkout -b my-new-feature) - Ensure everything works and the tests pass (
go test) - Commit your changes (
git commit -am 'Add some feature')
Contribute upstream:
- Fork it on GitHub
- Add your remote (
git remote add fork git@github.com:firstrow/tcp_server.git) - Push to the branch (
git push fork my-new-feature) - Create a new Pull Request on GitHub
Notice: Always use the original import path by installing with go get.