1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
12 func FileConn(f *os.File) (c Conn, err error) {
13 // TODO: Implement this
14 return nil, os.NewSyscallError("FileConn", syscall.EWINDOWS)
17 func FileListener(f *os.File) (l Listener, err error) {
18 // TODO: Implement this
19 return nil, os.NewSyscallError("FileListener", syscall.EWINDOWS)
22 func FilePacketConn(f *os.File) (c PacketConn, err error) {
23 // TODO: Implement this
24 return nil, os.NewSyscallError("FilePacketConn", syscall.EWINDOWS)