# Sometimes, the reader wins and is able to read the final message from the server # (2048) before the writer encounters an error: $ go run client.go -addr='secure.nhaminated.com:9999' -useTLS 2014/02/24 20:10:14.722902 read value: 2048 2014/02/24 20:10:14.723218 write error on iteration 6642 : write tcp 162.243.46.153:9999: broken pipe # Other times, the writer wins and an encounters an error before the reader is able # to read the final bytes off the socket: $ go run client.go -addr='secure.nhaminated.com:9999' -useTLS 2014/02/24 20:10:23.934537 write error on iteration 6494 : write tcp 162.243.46.153:9999: broken pipe 2014/02/24 20:10:23.934632 read error: write tcp 162.243.46.153:9999: broken pipe