2017-02-01 18:26:00 +00:00
|
|
|
// +build !darwin,!linux,!freebsd,!openbsd,!windows
|
|
|
|
|
|
|
|
package net
|
|
|
|
|
2018-10-19 18:33:23 +00:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/shirou/gopsutil/internal/common"
|
|
|
|
)
|
2017-02-01 18:26:00 +00:00
|
|
|
|
|
|
|
func IOCounters(pernic bool) ([]IOCountersStat, error) {
|
2018-10-19 18:33:23 +00:00
|
|
|
return IOCountersWithContext(context.Background(), pernic)
|
|
|
|
}
|
|
|
|
|
|
|
|
func IOCountersWithContext(ctx context.Context, pernic bool) ([]IOCountersStat, error) {
|
2017-02-01 18:26:00 +00:00
|
|
|
return []IOCountersStat{}, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func FilterCounters() ([]FilterStat, error) {
|
2018-10-19 18:33:23 +00:00
|
|
|
return FilterCountersWithContext(context.Background())
|
|
|
|
}
|
|
|
|
|
|
|
|
func FilterCountersWithContext(ctx context.Context) ([]FilterStat, error) {
|
2017-02-01 18:26:00 +00:00
|
|
|
return []FilterStat{}, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func ProtoCounters(protocols []string) ([]ProtoCountersStat, error) {
|
2018-10-19 18:33:23 +00:00
|
|
|
return ProtoCountersWithContext(context.Background(), protocols)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ProtoCountersWithContext(ctx context.Context, protocols []string) ([]ProtoCountersStat, error) {
|
2017-02-01 18:26:00 +00:00
|
|
|
return []ProtoCountersStat{}, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func Connections(kind string) ([]ConnectionStat, error) {
|
2018-10-19 18:33:23 +00:00
|
|
|
return ConnectionsWithContext(context.Background(), kind)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ConnectionsWithContext(ctx context.Context, kind string) ([]ConnectionStat, error) {
|
2017-02-01 18:26:00 +00:00
|
|
|
return []ConnectionStat{}, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func ConnectionsMax(kind string, max int) ([]ConnectionStat, error) {
|
2018-10-19 18:33:23 +00:00
|
|
|
return ConnectionsMaxWithContext(context.Background(), kind, max)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ConnectionsMaxWithContext(ctx context.Context, kind string, max int) ([]ConnectionStat, error) {
|
2017-02-01 18:26:00 +00:00
|
|
|
return []ConnectionStat{}, common.ErrNotImplementedError
|
|
|
|
}
|