Please help I am a newbie to php. I am playing with snort and acid, I have got everything working but whenever I click a link I get the following message:
Call to undefined method ProtocolFieldCriteria::ProtocolFieldCriteria() in /usr/local/apache2/htdocs/acid/acid_state_citems.inc on line 979
The code where this occurs is as follows:
Code: Select all
function IPFieldCriteria($db, $cs, $export_name, $element_cnt)
978 {
979 parent::ProtocolFieldCriteria(&$db, &$cs, $export_name, $element_cnt,
980 array("ip_tos" => "TOS",
981 "ip_ttl" => "TTL",
982 "ip_id" => "ID",
983 "ip_off" => "offset",
984 "ip_csum" => "chksum",
985 "ip_len" => "length"));
986 }Thanks in advance.
Kaingo