kubernetes/vendor/github.com/seccomp/libseccomp-golang
Kir Kolyshkin 865c9e8fb9
vendor: bump runc to 1.1.3
Release notes:
 https://github.com/opencontainers/runc/releases/tag/v1.1.3

In particular, this one is important:

 * Retry on dbus disconnect logic in libcontainer/cgroups/systemd now
   works as intended; this fix does not affect runc binary itself but
   is important for libcontainer users such as Kubernetes. (#3476)

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
2022-06-09 16:19:50 -07:00
..
.gitignore
.golangci.yml vendor: bump runc to 1.1.3 2022-06-09 16:19:50 -07:00
CHANGELOG
CONTRIBUTING.md vendor: bump runc to 1.1.3 2022-06-09 16:19:50 -07:00
LICENSE
Makefile vendor: bump runc to 1.1.3 2022-06-09 16:19:50 -07:00
README.md vendor: bump runc to 1.1.3 2022-06-09 16:19:50 -07:00
seccomp_internal.go vendor: bump runc to 1.1.3 2022-06-09 16:19:50 -07:00
seccomp.go vendor: bump runc to 1.1.3 2022-06-09 16:19:50 -07:00
SECURITY.md vendor: bump runc to 1.1.3 2022-06-09 16:19:50 -07:00

libseccomp Golang Bindings

https://github.com/seccomp/libseccomp-golang

Go Reference validate test

The libseccomp library provides an easy to use, platform independent, interface to the Linux Kernel's syscall filtering mechanism. The libseccomp API is designed to abstract away the underlying BPF based syscall filter language and present a more conventional function-call based filtering interface that should be familiar to, and easily adopted by, application developers.

The libseccomp-golang library provides a Go based interface to the libseccomp library.

Online Resources

The library source repository currently lives on GitHub at the following URLs:

The project mailing list is currently hosted on Google Groups at the URL below, please note that a Google account is not required to subscribe to the mailing list.

Documentation for this package is also available at:

Installing the package

# go get github.com/seccomp/libseccomp-golang

Contributing

See CONTRIBUTING.md.