mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08:20 +00:00

Also changing output to not include timestamps when we haven't started processing packets yet.
22 lines
361 B
C++
22 lines
361 B
C++
// Implementation of watches
|
|
|
|
#include "config.h"
|
|
|
|
#include "Debug.h"
|
|
#include "DbgWatch.h"
|
|
#include "Reporter.h"
|
|
|
|
// Support classes
|
|
DbgWatch::DbgWatch(BroObj* var_to_watch)
|
|
{
|
|
reporter->InternalError("DbgWatch unimplemented");
|
|
}
|
|
|
|
DbgWatch::DbgWatch(Expr* expr_to_watch)
|
|
{
|
|
reporter->InternalError("DbgWatch unimplemented");
|
|
}
|
|
|
|
DbgWatch::~DbgWatch()
|
|
{
|
|
}
|