The new package would help measuring one-way delays using ICMP type 13 packets. This is important for various scripts that automatically adjust CAKE shaper bandwidth based on the observed bufferbloat. They need to understand whether the delay is on the way up or on the way down, so that they can adjust the bandwidth of the proper part of the shaper. https://forum.openwrt.org/t/cake-w-adaptive-bandwidth-historic/108848 https://forum.openwrt.org/t/cake-w-adaptive-bandwidth/135379 V2: refreshed patches Signed-off-by: Alexander E. Patrakov <patrakov@gmail.com>
14 lines
401 B
Diff
14 lines
401 B
Diff
Description: Fixes declaration of global variable
|
|
Author: Marcio de Souza Oliveira <marciosouza@debian.org>
|
|
Last-Update: 2020-09-02
|
|
--- a/hping2.h
|
|
+++ b/hping2.h
|
|
@@ -357,7 +357,7 @@ struct delaytable_element {
|
|
int status;
|
|
};
|
|
|
|
-volatile struct delaytable_element delaytable[TABLESIZE];
|
|
+extern volatile struct delaytable_element delaytable[TABLESIZE];
|
|
|
|
/* protos */
|
|
void nop(void); /* nop */
|