Bug #15042 » 0002-pf-remove-incorrect-fragmentation-check.patch
| sys/netpfil/pf/pf.c | ||
|---|---|---|
|
(ackskew <= (MAXACKWINDOW << sws)) &&
|
||
|
/* Acking not more than one window forward */
|
||
|
((th->th_flags & TH_RST) == 0 || orig_seq == src->seqlo ||
|
||
|
(orig_seq == src->seqlo + 1) || (orig_seq + 1 == src->seqlo) ||
|
||
|
(pd->flags & PFDESC_IP_REAS) == 0)) {
|
||
|
(orig_seq == src->seqlo + 1) || (orig_seq + 1 == src->seqlo))) {
|
||
|
/* Require an exact/+1 sequence match on resets when possible */
|
||
|
if (dst->scrub || src->scrub) {
|
||
- « Previous
- 1
- 2
- Next »