Displaying 2 results from an estimated 2 matches for "create_filters".
Did you mean:
create_filter
2004 Nov 03
0
Download ratio unstable
...dev $LOCALIF parent 2:1 handle 10: sfq perturb 20
tc qdisc add dev $LOCALIF parent 2:2 handle 20: sfq perturb 20
tc qdisc add dev $LOCALIF parent 2:3 handle 30: sfq perturb 20
tc qdisc add dev $LOCALIF parent 2:4 handle 40: tbf rate
$(($RATE-40))kbit burst 1600 limit 3000
}
create_filters() {
# Match SYN and RST packets
iptables -t mangle -A POSTROUTING -o $LOCALIF -p tcp -m tcp
--tcp-flags ! SYN,RST,ACK ACK -j CLASSIFY --set-class 2:1
# Match ACK packets
iptables -t mangle -A POSTROUTING -o $LOCALIF -p tcp -m tcp
--tcp-flags SYN,RST,ACK ACK -m lengt...
2019 Aug 30
1
[nbdkit PATCH v2] filters: Stronger version match requirements
We documented our intent of only allowing a filter to run with the
same version of nbdkit it was compiled against, but up to now, were
not actually enforcing that - we had only been insisting on the looser
notion of a matching ._api_version, which doesn't help when we've
forgotten to bump that macro when making incompatible API/ABI changes
(see commit 6934d4c1). However, we can't use