mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 02:58:20 +00:00
little snag with hashing functionality...
This commit is contained in:
parent
86730c13dd
commit
f20125d22d
7 changed files with 333 additions and 22 deletions
|
@ -30,7 +30,7 @@ public:
|
|||
|
||||
protected:
|
||||
|
||||
virtual bool DoInit(string path, int num_fields,
|
||||
virtual bool DoInit(string path, int arg_num_fields, int arg_idx_fields,
|
||||
const LogField* const * fields);
|
||||
virtual void DoFinish();
|
||||
|
||||
|
@ -42,9 +42,12 @@ private:
|
|||
string fname;
|
||||
|
||||
unsigned int num_fields;
|
||||
unsigned int idx_fields;
|
||||
|
||||
// map columns in the file to columns to send back to the manager
|
||||
vector<FieldMapping> columnMap;
|
||||
|
||||
//map<string, string> *keyMap;
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue