]> Cypherpunks repositories - gostls13.git/commitdiff
net: update documentation for FileConn, FilePacketConn, FileListener
authorMikio Hara <mikioh.mikioh@gmail.com>
Fri, 29 Mar 2013 03:16:24 +0000 (12:16 +0900)
committerMikio Hara <mikioh.mikioh@gmail.com>
Fri, 29 Mar 2013 03:16:24 +0000 (12:16 +0900)
Closes the API documentation gap between platforms.

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/8086043

src/pkg/net/file_windows.go

index c50c32e2109791fabc3a0de6ad22b0acba9d7ce8..ca2b9b2262c02d6893a1e3074383dd4ed6e633df 100644 (file)
@@ -9,16 +9,28 @@ import (
        "syscall"
 )
 
+// FileConn returns a copy of the network connection corresponding to
+// the open file f.  It is the caller's responsibility to close f when
+// finished.  Closing c does not affect f, and closing f does not
+// affect c.
 func FileConn(f *os.File) (c Conn, err error) {
        // TODO: Implement this
        return nil, os.NewSyscallError("FileConn", syscall.EWINDOWS)
 }
 
+// FileListener returns a copy of the network listener corresponding
+// to the open file f.  It is the caller's responsibility to close l
+// when finished.  Closing l does not affect f, and closing f does not
+// affect l.
 func FileListener(f *os.File) (l Listener, err error) {
        // TODO: Implement this
        return nil, os.NewSyscallError("FileListener", syscall.EWINDOWS)
 }
 
+// FilePacketConn returns a copy of the packet network connection
+// corresponding to the open file f.  It is the caller's
+// responsibility to close f when finished.  Closing c does not affect
+// f, and closing f does not affect c.
 func FilePacketConn(f *os.File) (c PacketConn, err error) {
        // TODO: Implement this
        return nil, os.NewSyscallError("FilePacketConn", syscall.EWINDOWS)