FileAnalysis: add more params to some events.

This commit is contained in:
Jon Siwek 2013-04-11 11:24:18 -05:00
parent 2747e839fb
commit e2fbee9054
8 changed files with 113 additions and 48 deletions

View file

@ -62,7 +62,7 @@ event file_new(f: fa_file)
}
}
event file_over_new_connection(f: fa_file)
event file_over_new_connection(f: fa_file, c: connection)
{
print "FILE_OVER_NEW_CONNECTION";
}
@ -72,7 +72,7 @@ event file_timeout(f: fa_file)
print "FILE_TIMEOUT";
}
event file_gap(f: fa_file)
event file_gap(f: fa_file, offset: count, len: count)
{
print "FILE_GAP";
}