2020-09-10 23:21:32 +01: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-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
|
|
|
|
}
|