2016-11-09 18:01:07 -08:00
|
|
|
// +build !linux,!windows
|
2016-06-07 14:28:28 -07:00
|
|
|
|
|
|
|
package libnetwork
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
2016-08-22 22:20:48 -07:00
|
|
|
func (c *controller) cleanupServiceBindings(nid string) {
|
|
|
|
}
|
|
|
|
|
2016-06-14 19:40:25 -07:00
|
|
|
func (c *controller) addServiceBinding(name, sid, nid, eid string, vip net.IP, ingressPorts []*PortConfig, aliases []string, ip net.IP) error {
|
2016-06-07 14:28:28 -07:00
|
|
|
return fmt.Errorf("not supported")
|
|
|
|
}
|
|
|
|
|
2016-06-14 19:40:25 -07:00
|
|
|
func (c *controller) rmServiceBinding(name, sid, nid, eid string, vip net.IP, ingressPorts []*PortConfig, aliases []string, ip net.IP) error {
|
2016-06-07 14:28:28 -07:00
|
|
|
return fmt.Errorf("not supported")
|
|
|
|
}
|
|
|
|
|
2018-06-06 10:38:04 -04:00
|
|
|
func (sb *sandbox) populateLoadBalancers(ep *endpoint) {
|
2016-06-07 14:28:28 -07:00
|
|
|
}
|
2016-08-22 22:20:48 -07:00
|
|
|
|
|
|
|
func arrangeIngressFilterRule() {
|
|
|
|
}
|