mirror of
https://github.com/golang/go
synced 2024-11-15 00:30:31 -07:00
2a0fc9e70e
This reverts commit 6f7961da28
.
Russ suggests changing the frozon syscall package and obviously it's a
better solution. Perhaps he will also let me know the way how to get the
project owners to agree later.
Fixes #11492.
Change-Id: I98f9f366b72b85db54b4acfc3a604b62fb6d783c
Reviewed-on: https://go-review.googlesource.com/11854
Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com>
Reviewed-by: Rob Pike <r@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
26 lines
521 B
Go
26 lines
521 B
Go
// Copyright 2011 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package net
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
func fileConn(f *os.File) (Conn, error) {
|
|
// TODO: Implement this
|
|
return nil, syscall.EWINDOWS
|
|
}
|
|
|
|
func fileListener(f *os.File) (Listener, error) {
|
|
// TODO: Implement this
|
|
return nil, syscall.EWINDOWS
|
|
}
|
|
|
|
func filePacketConn(f *os.File) (PacketConn, error) {
|
|
// TODO: Implement this
|
|
return nil, syscall.EWINDOWS
|
|
}
|