2016-05-25 01:46:18 -04:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package libnetwork
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
2016-05-31 02:55:51 -04:00
|
|
|
func (c *controller) addServiceBinding(name, sid, nid, eid string, vip net.IP, ingressPorts []*PortConfig, ip net.IP) error {
|
2016-05-25 01:46:18 -04:00
|
|
|
return fmt.Errorf("not supported")
|
|
|
|
}
|
|
|
|
|
2016-05-31 02:55:51 -04:00
|
|
|
func (c *controller) rmServiceBinding(name, sid, nid, eid string, vip net.IP, ingressPorts []*PortConfig, ip net.IP) error {
|
2016-05-25 01:46:18 -04:00
|
|
|
return fmt.Errorf("not supported")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sb *sandbox) populateLoadbalancers(ep *endpoint) {
|
|
|
|
}
|