zeek/src/analyzer/protocols/ftp/Plugin.cc
Robin Sommer 3959e254e2 Moving protocol-specific BiFs out of bro.bif.
I hope I found them all ...
2013-04-19 15:25:18 -07:00

12 lines
278 B
C++

#include "plugin/Plugin.h"
#include "FTP.h"
BRO_PLUGIN_BEGIN(FTP)
BRO_PLUGIN_DESCRIPTION("FTP Analyzer");
BRO_PLUGIN_ANALYZER("FTP", ftp::FTP_Analyzer);
BRO_PLUGIN_SUPPORT_ANALYZER("FTP_ADAT");
BRO_PLUGIN_BIF_FILE(events);
BRO_PLUGIN_BIF_FILE(functions);
BRO_PLUGIN_END