forked from vishvananda/netlink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsocket_unspecified.go
More file actions
40 lines (30 loc) · 801 Bytes
/
socket_unspecified.go
File metadata and controls
40 lines (30 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//go:build !linux
// +build !linux
package netlink
import (
"net"
)
func SocketGet(local, remote net.Addr) (*Socket, error) {
return nil, ErrNotImplemented
}
func SocketDestroy(local, remote net.Addr) error {
return ErrNotImplemented
}
func SocketDiagTCPInfo(family uint8) ([]*InetDiagTCPInfoResp, error) {
return nil, ErrNotImplemented
}
func SocketDiagTCP(family uint8) ([]*Socket, error) {
return nil, ErrNotImplemented
}
func SocketDiagUDPInfo(family uint8) ([]*InetDiagUDPInfoResp, error) {
return nil, ErrNotImplemented
}
func SocketDiagUDP(family uint8) ([]*Socket, error) {
return nil, ErrNotImplemented
}
func UnixSocketDiagInfo() ([]*UnixDiagInfoResp, error) {
return nil, ErrNotImplemented
}
func UnixSocketDiag() ([]*UnixSocket, error) {
return nil, ErrNotImplemented
}