Skip to content

Instantly share code, notes, and snippets.

@AWinterman
Last active August 29, 2015 14:05
Show Gist options
  • Save AWinterman/e4ddc42c52f854ce60df to your computer and use it in GitHub Desktop.
Save AWinterman/e4ddc42c52f854ce60df to your computer and use it in GitHub Desktop.
for event := range clientData {
message, err := event.Encode()
if err != nil {
goto EXIT
}
_, err = fw.Write(message)
if err != nil {
goto EXIT
}
EXIT:
log.Printf("Encountered error %#v \n Closing connection", err)
return
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment