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