2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2020-09-10 23:21:32 +01:00
|
|
|
|
2021-08-05 23:42:39 +01:00
|
|
|
//go:build !windows
|
2020-09-10 23:21:32 +01:00
|
|
|
|
|
|
|
package netstat
|
|
|
|
|
2022-11-18 20:09:01 +00:00
|
|
|
// OSMetadata includes any additional OS-specific information that may be
|
|
|
|
// obtained during the retrieval of a given Entry.
|
|
|
|
type OSMetadata struct{}
|
|
|
|
|
2020-09-10 23:21:32 +01:00
|
|
|
func get() (*Table, error) {
|
|
|
|
return nil, ErrNotImplemented
|
|
|
|
}
|