mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08:20 +00:00
Bug fixes.
- Fixing a crash with an invalid pointer. - Fixing a namespacing problem with is_ftp_data_conn() and check_relay_3(). - Fixing the do-we-have-an-event-handler-defined check. Standard test-suite passes. Seth, I think you can give it a try now ...
This commit is contained in:
parent
871561939b
commit
45ebfbb2b8
8 changed files with 29 additions and 17 deletions
|
@ -15,6 +15,7 @@ class FuncType;
|
|||
class Stmt;
|
||||
class Frame;
|
||||
class ID;
|
||||
class CallExpr;
|
||||
|
||||
class Func : public BroObj {
|
||||
public:
|
||||
|
@ -36,7 +37,8 @@ public:
|
|||
{ return priority > other.priority; } // reverse sort
|
||||
};
|
||||
|
||||
virtual const vector<Body>& GetBodies() const { return bodies; }
|
||||
const vector<Body>& GetBodies() const { return bodies; }
|
||||
bool HasBodies() const { return bodies.size(); }
|
||||
|
||||
// virtual Val* Call(ListExpr* args) const = 0;
|
||||
virtual Val* Call(val_list* args, Frame* parent = 0) const = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue