Displaying 2 results from an estimated 2 matches for "create_filt".
Did you mean:
create_file
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 le...
2019 Aug 30
1
[nbdkit PATCH v2] filters: Stronger version match requirements
...= test_layers_filter_unload,
.config = test_layers_filter_config,
diff --git a/tests/test-cxx-filter.cpp b/tests/test-cxx-filter.cpp
index ba5ff29e..57299a15 100644
--- a/tests/test-cxx-filter.cpp
+++ b/tests/test-cxx-filter.cpp
@@ -49,7 +49,6 @@ namespace {
nbdkit_filter create_filter() {
nbdkit_filter filter = nbdkit_filter ();
filter.name = "cxxfilter";
- filter.version = PACKAGE_VERSION;
return filter;
}
}
--
2.21.0