2016-11-21 23:18:52 +01:00
|
|
|
// +build !darwin,!linux,!freebsd,!openbsd,!windows
|
2016-08-22 15:31:26 -07:00
|
|
|
|
|
|
|
package net
|
|
|
|
|
|
|
|
import "github.com/shirou/gopsutil/internal/common"
|
|
|
|
|
|
|
|
func IOCounters(pernic bool) ([]IOCountersStat, error) {
|
|
|
|
return []IOCountersStat{}, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func FilterCounters() ([]FilterStat, error) {
|
|
|
|
return []FilterStat{}, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func ProtoCounters(protocols []string) ([]ProtoCountersStat, error) {
|
|
|
|
return []ProtoCountersStat{}, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func Connections(kind string) ([]ConnectionStat, error) {
|
|
|
|
return []ConnectionStat{}, common.ErrNotImplementedError
|
|
|
|
}
|
2016-12-11 12:59:26 -05:00
|
|
|
|
|
|
|
func ConnectionsMax(kind string, max int) ([]ConnectionStat, error) {
|
|
|
|
return []ConnectionStat{}, common.ErrNotImplementedError
|
|
|
|
}
|