2018-02-05 21:05:59 +00:00
|
|
|
package daemon // import "github.com/docker/docker/daemon"
|
2016-09-07 23:08:51 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/container"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Windows network stats are obtained directly through HCS, hence this is a no-op.
|
|
|
|
func (daemon *Daemon) getNetworkStats(c *container.Container) (map[string]types.NetworkStats, error) {
|
|
|
|
return make(map[string]types.NetworkStats), nil
|
|
|
|
}
|