mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
10 lines
246 B
C++
10 lines
246 B
C++
|
|
#include "plugin/Plugin.h"
|
|
|
|
#include "ConnSize.h"
|
|
|
|
BRO_PLUGIN_BEGIN(Bro, ConnSize)
|
|
BRO_PLUGIN_DESCRIPTION("Connection size analyzer");
|
|
BRO_PLUGIN_ANALYZER("ConnSize", conn_size::ConnSize_Analyzer);
|
|
BRO_PLUGIN_BIF_FILE(events);
|
|
BRO_PLUGIN_END
|