mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6424c7a875
Fix all golint warnings, mostly by making exported types internal. Signed-off-by: Arnaud Porterie <arnaud.porterie@docker.com>
25 lines
538 B
Go
25 lines
538 B
Go
package bridge
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
)
|
|
|
|
const (
|
|
ipv4ForwardConf = "/proc/sys/net/ipv4/ip_forward"
|
|
ipv4ForwardConfPerm = 0644
|
|
)
|
|
|
|
func setupIPForwarding(i *bridgeInterface) error {
|
|
// Sanity Check
|
|
if i.Config.EnableIPForwarding == false {
|
|
return fmt.Errorf("Unexpected request to enable IP Forwarding for: %v", *i)
|
|
}
|
|
|
|
// Enable IPv4 forwarding
|
|
if err := ioutil.WriteFile(ipv4ForwardConf, []byte{'1', '\n'}, ipv4ForwardConfPerm); err != nil {
|
|
return fmt.Errorf("Setup IP forwarding failed: %v", err)
|
|
}
|
|
|
|
return nil
|
|
}
|