Skip to content

Commit

Permalink
added missing outbound params
Browse files Browse the repository at this point in the history
  • Loading branch information
ravinsp committed Aug 22, 2023
1 parent e16abc4 commit f27bb27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/network/slirp4netns/slirp4netns.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func DetectFeatures(binary string) (*Features, error) {
// NewParentDriver instantiates new parent driver.
// Requires slirp4netns v0.4.0 or later.
func NewParentDriver(logWriter io.Writer, binary string, mtu int, ipnet *net.IPNet, ifname string, disableHostLoopback bool, apiSocketPath string,
enableSandbox, enableSeccomp, enableIPv6 bool) (network.ParentDriver, error) {
enableSandbox, enableSeccomp, enableIPv6 bool, outboundAddr string, outboundAddr6 string) (network.ParentDriver, error) {
if binary == "" {
return nil, errors.New("got empty slirp4netns binary")
}
Expand Down

0 comments on commit f27bb27

Please sign in to comment.