Short postscript here, because I just learned there is more than one namespace 
involved, and that config.name in plugin.cc is probably where zeek -N picks up 
the string that it utilizes:
The code has:

namespace plugin { 
    namespace Zeek_BACNET {
        Plugin plugin;
        }
    }
using namespace plugin::Zeek_BACNET;

plugin::Configuration Plugin::Configure() {
    AddComponent(new ::analyzer::Component("BACNET", 
::analyzer::bacnet::BACNET_Analyzer::Instantiate));    
    plugin::Configuration config;
    config.name = "Zeek::BACNET";
    config.description = "Bacnet Protocol analyzer";
    return config;
    }
_______________________________________________
zeek-dev mailing list -- zeek-dev@lists.zeek.org
To unsubscribe send an email to zeek-dev-le...@lists.zeek.org

Reply via email to