Crates.io | speedtest |
lib.rs | speedtest |
version | 0.2.1 |
source | src |
created_at | 2024-01-31 00:58:39.981438 |
updated_at | 2024-09-25 18:37:59.149419 |
description | Rust-based network speed testing tool between two computers |
homepage | |
repository | https://github.com/Antosser/speedtest |
max_upload_size | |
id | 1120999 |
size | 28,384 |
Speedtest is a Rust-based ๐ฆ command-line utility designed for measuring network speed between two computers. It provides two subcommands: serve
and test
, allowing users to set up a server on one machine and perform network speed tests from another machine.
To install Speedtest, use the following command:
cargo install speedtest
Rust-based network speed testing tool between two computers
Usage: speedtest <COMMAND>
Commands:
serve Listen to incoming TCP connections on the given socket address
test Connect to a TCP server with the given socket address
help Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help
-V, --version Print version
Listen to incoming TCP connections on the given socket address
Usage: speedtest serve <SOCKET>
Arguments:
<SOCKET> Socket address
Options:
-h, --help Print help
Connect to a TCP server with the given socket address
Usage: speedtest.exe test [OPTIONS] <SOCKET>
Arguments:
<SOCKET> Socket address
Options:
-l, --length <LENGTH> How much bytes to send to the server [default: 10MB]
-h, --help Print help
speedtest serve 127.0.0.1:8080
speedtest test 127.0.0.1:8080 --length 100
~> speedtest serve 0.0.0.0:1234
2024-01-31T01:00:58.464460Z INFO server{socket_addr=0.0.0.0:1234}: speedtest: Listening...
2024-01-31T01:01:12.014269Z INFO speedtest: Incoming connection
~> speedtest test 127.0.0.1:1234 -l 100MB
2024-01-31T01:01:12.014113Z INFO client{socket_addr=127.0.0.1:1234 length=100}: speedtest: Stream accepted
2024-01-31T01:01:12.014229Z INFO client{socket_addr=127.0.0.1:1234 length=100}: speedtest: Writing data...
Transferred data: 100 MB
Elapsed time: 123.7696ms
Transfer speed: 807.95 MB/s