golang on davidchua https://dchua.com/tags/golang/ Recent content in golang on davidchua Hugo -- gohugo.io en-us Wed, 28 Jun 2017 00:00:00 +0000 Sending your Structs across the wire (tcp connection) https://dchua.com/posts/2017-06-23-sending-your-structs-across-the-wire/ Wed, 28 Jun 2017 00:00:00 +0000 https://dchua.com/posts/2017-06-23-sending-your-structs-across-the-wire/ Sending your structs across the wire and receiving them on the other side. Using encoding/gob can help ensure your data structures can receive it on the other side. // server.go package main import ... // Create your custom data struct type Message struct { ID string Data string } func main() { // for purpose of verbosity, I will be removing error handling from this // sample code server, err := net.