mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 21:48:21 +00:00
Fix the irc_reply event for certain server message types.
This commit is contained in:
parent
410e4babd0
commit
1e43dfc46a
1 changed files with 2 additions and 1 deletions
|
@ -164,7 +164,7 @@ void IRC_Analyzer::DeliverStream(int length, const u_char* line, bool orig)
|
|||
if ( code > 0 )
|
||||
{
|
||||
switch ( code ) {
|
||||
// Ignore unimportant messages.
|
||||
/*
|
||||
case 1: // RPL_WELCOME
|
||||
case 2: // RPL_YOURHOST
|
||||
case 3: // RPL_CREATED
|
||||
|
@ -183,6 +183,7 @@ void IRC_Analyzer::DeliverStream(int length, const u_char* line, bool orig)
|
|||
case 376: // RPL_ENDOFMOTD
|
||||
case 331: // RPL_NOTOPIC
|
||||
break;
|
||||
*/
|
||||
|
||||
// Count of users, services and servers in whole network.
|
||||
case 251:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue