mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 01:58:20 +00:00
Merge remote-tracking branch 'origin/topic/seth/bittorrent-fix-and-dpd-sig-breakout'
Closes #1035. * origin/topic/seth/bittorrent-fix-and-dpd-sig-breakout: Small test fixes. Added a missing curly brace in smtp/dpd.sig Fix a bug where the same analyzer tag was reused for two different analyzers. Moved DPD signatures into script specific directories.
This commit is contained in:
commit
cb09bd6358
23 changed files with 189 additions and 222 deletions
|
@ -22,7 +22,7 @@ static RecordType* bittorrent_benc_value;
|
|||
static TableType* bittorrent_benc_dir;
|
||||
|
||||
BitTorrentTracker_Analyzer::BitTorrentTracker_Analyzer(Connection* c)
|
||||
: tcp::TCP_ApplicationAnalyzer("BITTORRENT", c)
|
||||
: tcp::TCP_ApplicationAnalyzer("BITTORRENTTRACKER", c)
|
||||
{
|
||||
if ( ! bt_tracker_headers )
|
||||
{
|
||||
|
|
|
@ -7,6 +7,6 @@
|
|||
BRO_PLUGIN_BEGIN(Bro, BitTorrent)
|
||||
BRO_PLUGIN_DESCRIPTION("BitTorrent Analyzer");
|
||||
BRO_PLUGIN_ANALYZER("BitTorrent", bittorrent::BitTorrent_Analyzer);
|
||||
BRO_PLUGIN_ANALYZER("BitTorrentTracker", bittorrent::BitTorrent_Analyzer);
|
||||
BRO_PLUGIN_ANALYZER("BitTorrentTracker", bittorrent::BitTorrentTracker_Analyzer);
|
||||
BRO_PLUGIN_BIF_FILE(events);
|
||||
BRO_PLUGIN_END
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue