2016-10-12 19:55:20 -04:00
|
|
|
// +build !linux,!windows
|
2016-05-25 01:46:18 -04:00
|
|
|
|
|
|
|
package libnetwork
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
2016-08-19 20:50:37 -04:00
|
|
|
func (c *controller) cleanupServiceBindings(nid string) {
|
|
|
|
}
|
|
|
|
|
2016-06-14 19:40:54 -04:00
|
|
|
func (c *controller) addServiceBinding(name, sid, nid, eid string, vip net.IP, ingressPorts []*PortConfig, aliases []string, ip net.IP) error {
|
2016-05-25 01:46:18 -04:00
|
|
|
return fmt.Errorf("not supported")
|
|
|
|
}
|
|
|
|
|
2016-06-14 19:40:54 -04:00
|
|
|
func (c *controller) rmServiceBinding(name, sid, nid, eid string, vip net.IP, ingressPorts []*PortConfig, aliases []string, ip net.IP) error {
|
2016-05-25 01:46:18 -04:00
|
|
|
return fmt.Errorf("not supported")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sb *sandbox) populateLoadbalancers(ep *endpoint) {
|
|
|
|
}
|
2016-08-15 13:54:18 -04:00
|
|
|
|
|
|
|
func arrangeIngressFilterRule() {
|
|
|
|
}
|