summaryrefslogtreecommitdiffhomepage
path: root/net/netstat/netstat_noimpl.go
blob: d8bbd6b2c30a4cd2e0e55b474eb45479c97c8137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build !windows
// +build !windows

package netstat

func get() (*Table, error) {
	return nil, ErrNotImplemented
}