buffer := make([]byte, 1024)
conn.Read(buffer)
conn.Close() // or return

上面的代码可能会导致 TCP Reset.

如果关闭连接的时候,buffer 中还有数据没有读取完,直接关闭连接会导致 TCP Reset。