mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Revert "pf: some ICMP types that also have icmp_id, pointed out by markus@"
This reverts commit f924c2e1ff.
This commit is contained in:
parent
40d6d0ed9f
commit
860e2a2937
1 changed files with 3 additions and 3 deletions
|
|
@ -1791,21 +1791,21 @@ pf_icmp_mapping(struct pf_pdesc *pd, u_int8_t type,
|
|||
*icmp_dir = PF_IN;
|
||||
case ICMP_TSTAMPREPLY:
|
||||
*icmptype = ICMP_TSTAMP;
|
||||
*icmpid = pd->hdr.icmp.icmp_id;
|
||||
*icmpid = 0; /* Time is not a secret. */
|
||||
break;
|
||||
|
||||
case ICMP_IREQ:
|
||||
*icmp_dir = PF_IN;
|
||||
case ICMP_IREQREPLY:
|
||||
*icmptype = ICMP_IREQ;
|
||||
*icmpid = pd->hdr.icmp.icmp_id;
|
||||
*icmpid = 0; /* Nothing sane to match on! */
|
||||
break;
|
||||
|
||||
case ICMP_MASKREQ:
|
||||
*icmp_dir = PF_IN;
|
||||
case ICMP_MASKREPLY:
|
||||
*icmptype = ICMP_MASKREQ;
|
||||
*icmpid = pd->hdr.icmp.icmp_id;
|
||||
*icmpid = 0; /* Nothing sane to match on! */
|
||||
break;
|
||||
|
||||
case ICMP_IPV6_WHEREAREYOU:
|
||||
|
|
|
|||
Loading…
Reference in a new issue