blob: d1dc9ec333c37b0c9337c0dfa82d0100175dba85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package init0
const Env = "FORTIFY_INIT"
type Payload struct {
// target full exec path
Argv0 string
// child full argv
Argv []string
// verbosity pass through
Verbose bool
}
|