1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
//go:build !linux && !windows
package libnetwork
import (
"errors"
"net"
)
func (c *Controller) cleanupServiceDiscovery(cleanupNID string) {}
func (c *Controller) cleanupServiceBindings(nid string) {}
func (c *Controller) addServiceBinding(name, sid, nid, eid string, vip net.IP, ingressPorts []*PortConfig, aliases []string, ip net.IP) error {
return errors.New("not supported")
}
func (c *Controller) rmServiceBinding(name, sid, nid, eid string, vip net.IP, ingressPorts []*PortConfig, aliases []string, ip net.IP) error {
return errors.New("not supported")
}
func (sb *Sandbox) populateLoadBalancers(*Endpoint) {}
func arrangeIngressFilterRule() {}
|