-- fixed segfaults due to unitialized cleanup_pkt and unset stream_tcp
-- matched up stream_tcp.policy enum with defines
-- tweaked S5_TRACE output
+-- fixed alert_fast to default to not print payload
125
-- discovered can't catch exceptions thrown from Lua to C++; need to
{ "file", Parameter::PT_BOOL, nullptr, "false",
"output to " F_NAME " instead of stdout" },
- { "packet", Parameter::PT_BOOL, nullptr, "true",
+ { "packet", Parameter::PT_BOOL, nullptr, "false",
"output packet dump with alert" },
{ "limit", Parameter::PT_INT, "0:", "0",
file = false;
limit = 0;
units = 0;
- packet = true;
+ packet = false;
return true;
}
LogIpAddrs(fast_log, p);
}
- if(packet)
+ if ( packet || ScOutputAppData() )
{
TextLog_NewLine(fast_log);
#ifdef REG_TEST