mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 08:38:20 +00:00
Renaming reporter_message to report_info.
Same change internally.
This commit is contained in:
parent
eb0580c622
commit
df1b2f922b
14 changed files with 34 additions and 34 deletions
|
@ -537,7 +537,7 @@ void net_get_final_stats()
|
|||
{
|
||||
struct PktSrc::Stats s;
|
||||
ps->Statistics(&s);
|
||||
reporter->Message("%d packets received on interface %s, %d dropped\n",
|
||||
reporter->Info("%d packets received on interface %s, %d dropped\n",
|
||||
s.received, ps->Interface(), s.dropped);
|
||||
}
|
||||
}
|
||||
|
@ -611,7 +611,7 @@ static double suspend_start = 0;
|
|||
void net_suspend_processing()
|
||||
{
|
||||
if ( _processing_suspended == 0 )
|
||||
reporter->Message("processing suspended");
|
||||
reporter->Info("processing suspended");
|
||||
|
||||
++_processing_suspended;
|
||||
}
|
||||
|
@ -620,7 +620,7 @@ void net_continue_processing()
|
|||
{
|
||||
if ( _processing_suspended == 1 )
|
||||
{
|
||||
reporter->Message("processing continued");
|
||||
reporter->Info("processing continued");
|
||||
loop_over_list(pkt_srcs, i)
|
||||
pkt_srcs[i]->ContinueAfterSuspend();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue