mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-27 12:30:34 -09:00
nettest measures download and upload throughput, latency, jitter and packet loss using the RMBT protocol. The same binary runs as either the client or the measurement server it tests against. Written in Rust with no native library dependencies: the target binary links only libc, libm and libgcc_s, and is fully static when built against musl. Signed-off-by: Bogdan Radulescu <bogdan@nimblex.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12 lines
379 B
Plaintext
12 lines
379 B
Plaintext
config BR2_PACKAGE_NETTEST
|
|
bool "nettest"
|
|
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
|
|
select BR2_PACKAGE_HOST_RUSTC
|
|
help
|
|
nettest measures download and upload throughput, latency,
|
|
jitter and packet loss using the RMBT protocol. The same
|
|
binary runs as either the client or the measurement server
|
|
it tests against.
|
|
|
|
https://github.com/specure/nettest
|