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:
Tim Wojtulewicz 2020-08-21 09:45:16 -07:00
parent fe0c22c789
commit 70c2397f69
169 changed files with 3139 additions and 3141 deletions

View file

@ -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;