net_fallback.go 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // +build !darwin,!linux,!freebsd,!openbsd,!windows
  2. package net
  3. import (
  4. "context"
  5. "github.com/shirou/gopsutil/internal/common"
  6. )
  7. func IOCounters(pernic bool) ([]IOCountersStat, error) {
  8. return IOCountersWithContext(context.Background(), pernic)
  9. }
  10. func IOCountersWithContext(ctx context.Context, pernic bool) ([]IOCountersStat, error) {
  11. return []IOCountersStat{}, common.ErrNotImplementedError
  12. }
  13. func FilterCounters() ([]FilterStat, error) {
  14. return FilterCountersWithContext(context.Background())
  15. }
  16. func FilterCountersWithContext(ctx context.Context) ([]FilterStat, error) {
  17. return []FilterStat{}, common.ErrNotImplementedError
  18. }
  19. func ProtoCounters(protocols []string) ([]ProtoCountersStat, error) {
  20. return ProtoCountersWithContext(context.Background(), protocols)
  21. }
  22. func ProtoCountersWithContext(ctx context.Context, protocols []string) ([]ProtoCountersStat, error) {
  23. return []ProtoCountersStat{}, common.ErrNotImplementedError
  24. }
  25. func Connections(kind string) ([]ConnectionStat, error) {
  26. return ConnectionsWithContext(context.Background(), kind)
  27. }
  28. func ConnectionsWithContext(ctx context.Context, kind string) ([]ConnectionStat, error) {
  29. return []ConnectionStat{}, common.ErrNotImplementedError
  30. }
  31. func ConnectionsMax(kind string, max int) ([]ConnectionStat, error) {
  32. return ConnectionsMaxWithContext(context.Background(), kind, max)
  33. }
  34. func ConnectionsMaxWithContext(ctx context.Context, kind string, max int) ([]ConnectionStat, error) {
  35. return []ConnectionStat{}, common.ErrNotImplementedError
  36. }