File: consts.go

package info (click to toggle)
golang-github-opencontainers-runtime-tools 0.9.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,108 kB
  • sloc: sh: 557; makefile: 104
file content (12 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
package seccomp

const (
	seccompOverwrite = "overwrite"
	seccompAppend    = "append"
	nothing          = "nothing"
	kill             = "kill"
	trap             = "trap"
	trace            = "trace"
	allow            = "allow"
	errno            = "errno"
)