mirror of
https://github.com/containers/podman.git
synced 2025-12-05 21:32:22 +08:00
CVE-2024-1753 fix for main
Bump to the version of Buidah in it's main branch to get the CVE-2024-1753 fix. [NO NEW TESTS NEEDED] Signed-off-by: tomsweeneyredhat <tsweeney@redhat.com>
This commit is contained in:
12
vendor/github.com/containers/common/libnetwork/slirp4netns/const.go
generated
vendored
12
vendor/github.com/containers/common/libnetwork/slirp4netns/const.go
generated
vendored
@@ -1,5 +1,7 @@
|
||||
package slirp4netns
|
||||
|
||||
import "net"
|
||||
|
||||
const (
|
||||
ipv6ConfDefaultAcceptDadSysctl = "/proc/sys/net/ipv6/conf/default/accept_dad"
|
||||
BinaryName = "slirp4netns"
|
||||
@@ -10,3 +12,13 @@ const (
|
||||
// default slirp4ns subnet
|
||||
defaultSubnet = "10.0.2.0/24"
|
||||
)
|
||||
|
||||
// SetupResult return type from Setup()
|
||||
type SetupResult struct {
|
||||
// Pid of the created slirp4netns process
|
||||
Pid int
|
||||
// Subnet which is used by slirp4netns
|
||||
Subnet *net.IPNet
|
||||
// IPv6 whenever Ipv6 is enabled in slirp4netns
|
||||
IPv6 bool
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user