netstat_noimpl.go 334 B

1234567891011121314
  1. // Copyright (c) Tailscale Inc & AUTHORS
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. //go:build !windows
  4. package netstat
  5. // OSMetadata includes any additional OS-specific information that may be
  6. // obtained during the retrieval of a given Entry.
  7. type OSMetadata struct{}
  8. func get() (*Table, error) {
  9. return nil, ErrNotImplemented
  10. }