Skip to content

Instantly share code, notes, and snippets.

@yanzay
Created December 19, 2016 08:57
Show Gist options
  • Save yanzay/cabd0ca91d98ab35e3e24281a59d9a35 to your computer and use it in GitHub Desktop.
Save yanzay/cabd0ca91d98ab35e3e24281a59d9a35 to your computer and use it in GitHub Desktop.
func processClient(conn net.Conn) {
_, err := io.Copy(os.Stdout, conn)
if err != nil {
fmt.Println(err)
}
conn.Close()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment