diff options
Diffstat (limited to 'src/global.go')
-rw-r--r-- | src/global.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/global.go b/src/global.go index 3ddbc79..7401dc5 100644 --- a/src/global.go +++ b/src/global.go | |||
@@ -10,6 +10,7 @@ type eventType int | |||
10 | const ( | 10 | const ( |
11 | NEWPID eventType = iota | 11 | NEWPID eventType = iota |
12 | PIDEXIT | 12 | PIDEXIT |
13 | EXECVE | ||
13 | FILEOPEN | 14 | FILEOPEN |
14 | FILEWRITE | 15 | FILEWRITE |
15 | TYPENUM | 16 | TYPENUM |
@@ -29,7 +30,7 @@ type Event struct { | |||
29 | } | 30 | } |
30 | 31 | ||
31 | func (et eventType) String() string { | 32 | func (et eventType) String() string { |
32 | names := []string{"newPid", "pidExit", "open", "write", "typeNum"} | 33 | names := []string{"NEWPID", "PIDEXIT", "EXECVE", "FILEOPEN", "FILEWRITE", "TYPENUM"} |
33 | if et < NEWPID || et > TYPENUM { | 34 | if et < NEWPID || et > TYPENUM { |
34 | return "Unknown" | 35 | return "Unknown" |
35 | } | 36 | } |