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