aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/init/payload.go
blob: 6f4b2781a670e27435257f5f3c0ffbe9d343d286 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package init0

const EnvInit = "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
}