Imported Upstream version 4.7.2
[platform/upstream/gcc48.git] / libgo / go / net / file_windows.go
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.
4
5 package net
6
7 import (
8         "os"
9         "syscall"
10 )
11
12 func FileConn(f *os.File) (c Conn, err error) {
13         // TODO: Implement this
14         return nil, os.NewSyscallError("FileConn", syscall.EWINDOWS)
15 }
16
17 func FileListener(f *os.File) (l Listener, err error) {
18         // TODO: Implement this
19         return nil, os.NewSyscallError("FileListener", syscall.EWINDOWS)
20 }
21
22 func FilePacketConn(f *os.File) (c PacketConn, err error) {
23         // TODO: Implement this
24         return nil, os.NewSyscallError("FilePacketConn", syscall.EWINDOWS)
25 }