mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 02:58:20 +00:00
Move Type types to zeek namespace
This commit is contained in:
parent
4a1b39a2be
commit
ed13972924
120 changed files with 2094 additions and 1934 deletions
|
@ -58,10 +58,10 @@ bool BroSubstring::DoesCover(const BroSubstring* bst) const
|
|||
|
||||
VectorVal* BroSubstring::VecToPolicy(Vec* vec)
|
||||
{
|
||||
static auto sw_substring_type = zeek::id::find_type<RecordType>("sw_substring");
|
||||
static auto sw_align_type = zeek::id::find_type<RecordType>("sw_align");
|
||||
static auto sw_align_vec_type = zeek::id::find_type<VectorType>("sw_align_vec");
|
||||
static auto sw_substring_vec_type = zeek::id::find_type<VectorType>("sw_substring_vec");
|
||||
static auto sw_substring_type = zeek::id::find_type<zeek::RecordType>("sw_substring");
|
||||
static auto sw_align_type = zeek::id::find_type<zeek::RecordType>("sw_align");
|
||||
static auto sw_align_vec_type = zeek::id::find_type<zeek::VectorType>("sw_align_vec");
|
||||
static auto sw_substring_vec_type = zeek::id::find_type<zeek::VectorType>("sw_substring_vec");
|
||||
|
||||
auto result = make_intrusive<VectorVal>(sw_substring_vec_type);
|
||||
|
||||
|
@ -537,7 +537,7 @@ BroSubstring::Vec* smith_waterman(const BroString* s1, const BroString* s2,
|
|||
current->swn_prev ? current->swn_prev->id : 0,
|
||||
string1[i-1], string2[j-1]);
|
||||
#endif
|
||||
//printf("%.5i ", current->swn_score);
|
||||
//printf("%.5i ", current->swn_score);
|
||||
}
|
||||
|
||||
#if 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue