| // Copyright 2016 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 netreflect implements run-time reflection for the |
| // facilities of net package. |
| errInvalidType = errors.New("invalid type") |
| errOpNoSupport = errors.New("operation not supported") |
| // SocketOf returns the socket descriptor of c. |
| func SocketOf(c net.Conn) (uintptr, error) { |
| case *net.TCPConn, *net.UDPConn, *net.IPConn, *net.UnixConn: |
| // PacketSocketOf returns the socket descriptor of c. |
| func PacketSocketOf(c net.PacketConn) (uintptr, error) { |
| case *net.UDPConn, *net.IPConn, *net.UnixConn: |
| return socketOf(c.(net.Conn)) |