aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd/finit/ipc/payload.go
blob: 535a0e7024bc2c5d057f6868ba6e085a0dbc8d85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package init0

const Env = "FORTIFY_INIT"

type Payload struct {
	// target full exec path
	Argv0 string
	// child full argv
	Argv []string
	// wayland fd, -1 to disable
	WL int

	// verbosity pass through
	Verbose bool
}