Commit 5416e6e9 authored by Rick Arnold's avatar Rick Arnold Committed by Russ Cox

net: document that File reverts connection to blocking mode.

Fixes #2458.

R=mikioh.mikioh, rsc
CC=golang-dev
https://golang.org/cl/6869054
parent 82f2b36e
...@@ -197,9 +197,13 @@ func (c *conn) SetWriteBuffer(bytes int) error { ...@@ -197,9 +197,13 @@ func (c *conn) SetWriteBuffer(bytes int) error {
return setWriteBuffer(c.fd, bytes) return setWriteBuffer(c.fd, bytes)
} }
// File returns a copy of the underlying os.File, set to blocking mode. // File sets the underlying os.File to blocking mode and returns a copy.
// It is the caller's responsibility to close f when finished. // It is the caller's responsibility to close f when finished.
// Closing c does not affect f, and closing f does not affect c. // Closing c does not affect f, and closing f does not affect c.
//
// The returned os.File's file descriptor is different from the connection's.
// Attempting to change properties of the original using this duplicate
// may or may not have the desired effect.
func (c *conn) File() (f *os.File, err error) { return c.fd.dup() } func (c *conn) File() (f *os.File, err error) { return c.fd.dup() }
// An Error represents a network error. // An Error represents a network error.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment