mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00

the file analyzer does not yet re-populate the info record that means quite a lot of information is simply not available.
10 lines
208 B
C++
10 lines
208 B
C++
|
|
#include "plugin/Plugin.h"
|
|
|
|
#include "SSL.h"
|
|
|
|
BRO_PLUGIN_BEGIN(Bro, SSL)
|
|
BRO_PLUGIN_DESCRIPTION("SSL analyzer");
|
|
BRO_PLUGIN_ANALYZER("SSL", ssl::SSL_Analyzer);
|
|
BRO_PLUGIN_BIF_FILE(events);
|
|
BRO_PLUGIN_END
|