URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgo/] [go/] [net/] [file.go] - Rev 747
Compare with Previous | Blame | View Log
// 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.// +build darwin freebsd linux netbsd openbsdpackage netimport ("os""syscall")func newFileFD(f *os.File) (*netFD, error) {fd, err := syscall.Dup(f.Fd())if err != nil {return nil, os.NewSyscallError("dup", err)}proto, err := syscall.GetsockoptInt(fd, syscall.SOL_SOCKET, syscall.SO_TYPE)if err != nil {return nil, os.NewSyscallError("getsockopt", err)}family := syscall.AF_UNSPECtoAddr := sockaddrToTCPsa, _ := syscall.Getsockname(fd)switch sa.(type) {default:closesocket(fd)return nil, os.EINVALcase *syscall.SockaddrInet4:family = syscall.AF_INETif proto == syscall.SOCK_DGRAM {toAddr = sockaddrToUDP} else if proto == syscall.SOCK_RAW {toAddr = sockaddrToIP}case *syscall.SockaddrInet6:family = syscall.AF_INET6if proto == syscall.SOCK_DGRAM {toAddr = sockaddrToUDP} else if proto == syscall.SOCK_RAW {toAddr = sockaddrToIP}case *syscall.SockaddrUnix:family = syscall.AF_UNIXtoAddr = sockaddrToUnixif proto == syscall.SOCK_DGRAM {toAddr = sockaddrToUnixgram} else if proto == syscall.SOCK_SEQPACKET {toAddr = sockaddrToUnixpacket}}laddr := toAddr(sa)sa, _ = syscall.Getpeername(fd)raddr := toAddr(sa)netfd, err := newFD(fd, family, proto, laddr.Network())if err != nil {return nil, err}netfd.setAddr(laddr, raddr)return netfd, nil}// 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) {fd, err := newFileFD(f)if err != nil {return nil, err}switch fd.laddr.(type) {case *TCPAddr:return newTCPConn(fd), nilcase *UDPAddr:return newUDPConn(fd), nilcase *UnixAddr:return newUnixConn(fd), nilcase *IPAddr:return newIPConn(fd), nil}fd.Close()return nil, os.EINVAL}// 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 c does not affect l, and closing l does not// affect c.func FileListener(f *os.File) (l Listener, err error) {fd, err := newFileFD(f)if err != nil {return nil, err}switch laddr := fd.laddr.(type) {case *TCPAddr:return &TCPListener{fd}, nilcase *UnixAddr:return &UnixListener{fd, laddr.Name}, nil}fd.Close()return nil, os.EINVAL}// 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) {fd, err := newFileFD(f)if err != nil {return nil, err}switch fd.laddr.(type) {case *UDPAddr:return newUDPConn(fd), nilcase *UnixAddr:return newUnixConn(fd), nil}fd.Close()return nil, os.EINVAL}
