GH-218: Add missing ICMP router advertisement counterpart

This commit is contained in:
Jon Siwek 2018-11-22 07:56:17 -06:00
parent 0b2d182f76
commit 6af68638de
3 changed files with 6 additions and 1 deletions

View file

@ -1,4 +1,8 @@
2.6-beta3-2 | 2018-11-22 07:56:17 -0600
* GH-218: Add missing ICMP router advertisement counterpart (Jon Siwek, Corelight)
2.6-beta3 | 2018-11-14 17:09:42 -0600
* Release 2.6-beta3

View file

@ -1 +1 @@
2.6-beta3
2.6-beta3-2

View file

@ -863,6 +863,7 @@ int analyzer::icmp::ICMP4_counterpart(int icmp_type, int icmp_code, bool& is_one
case ICMP_IREQREPLY: return ICMP_IREQ;
case ICMP_ROUTERSOLICIT: return ICMP_ROUTERADVERT;
case ICMP_ROUTERADVERT: return ICMP_ROUTERSOLICIT;
case ICMP_MASKREQ: return ICMP_MASKREPLY;
case ICMP_MASKREPLY: return ICMP_MASKREQ;