mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 21:48:21 +00:00
Plugins: Clean up explicit uses of namespaces in places where they're not necessary.
This commit covers all of the plugin classes.
This commit is contained in:
parent
fe0c22c789
commit
70c2397f69
169 changed files with 3139 additions and 3141 deletions
|
@ -4,8 +4,8 @@
|
|||
|
||||
namespace zeek::analyzer::zip {
|
||||
|
||||
ZIP_Analyzer::ZIP_Analyzer(zeek::Connection* conn, bool orig, Method arg_method)
|
||||
: zeek::analyzer::tcp::TCP_SupportAnalyzer("ZIP", conn, orig)
|
||||
ZIP_Analyzer::ZIP_Analyzer(Connection* conn, bool orig, Method arg_method)
|
||||
: analyzer::tcp::TCP_SupportAnalyzer("ZIP", conn, orig)
|
||||
{
|
||||
zip = nullptr;
|
||||
zip_status = Z_OK;
|
||||
|
@ -45,7 +45,7 @@ void ZIP_Analyzer::Done()
|
|||
|
||||
void ZIP_Analyzer::DeliverStream(int len, const u_char* data, bool orig)
|
||||
{
|
||||
zeek::analyzer::tcp::TCP_SupportAnalyzer::DeliverStream(len, data, orig);
|
||||
analyzer::tcp::TCP_SupportAnalyzer::DeliverStream(len, data, orig);
|
||||
|
||||
if ( ! len || zip_status != Z_OK )
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue