2024-10-14 02:27:02 +09:00
|
|
|
package init0
|
|
|
|
|
2024-11-02 03:03:44 +09:00
|
|
|
const Env = "FORTIFY_INIT"
|
2024-10-14 02:27:02 +09:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|