2020-09-11 06:21:32 +08:00
|
|
|
// 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.
|
|
|
|
|
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
|
|
|
|
}
|