docker run --rm --name librespeed-cli librespeed-cli:latest # With options docker run --rm --name librespeed-cli librespeed-cli:latest --telemetry-level disabled --no-upload # To avoid "Failed to ping target host: socket: permission denied" errors when using --verbose docker run --rm -...
SpeedTestSocketspeedTestSocket=newSpeedTestSocket();// add a listener to wait for speedtest completion and progressspeedTestSocket.addSpeedTestListener(newISpeedTestListener() {@OverridepublicvoidonCompletion(SpeedTestReportreport) {// called when download/upload is completeSystem.out.println("[COMPLETED] ra...
Largely vendored from Python 2.7, modified to work with Python 2.4 """ host, port = address err = None for res in socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM): af, socktype, proto, canonname, sa = res sock = None try: sock = socket.socket(af, socktype, pr...
raise SpeedtestCLIError('Cannot supply both --no-download and ' '--no-upload') if args.csv_header: csv_header() if len(args.csv_delimiter) != 1: raise SpeedtestCLIError('--csv-delimiter must be a single character') validate_optional_args(args) socket.setdefaulttimeout(args....
docker run --rm --name librespeed-cli librespeed-cli:latest#With optionsdocker run --rm --name librespeed-cli librespeed-cli:latest --telemetry-level disabled --no-upload#To avoid "Failed to ping target host: socket: permission denied" errors when using --verbosedocker run --rm --name lib...
systemd Support systemd socket activation (librespeed#35) Jan 18, 2022 web Bump go-systemd from unreleased git version to release v22.4.0 (libre… Apr 11, 2023 .gitignore Migrate code from Go branch to new repo Jun 2, 2020 .goreleaser.yml goreleaser: don't upx compress Linux MIPS bianrie...
import socket import sys import threading import timeit import xml.parsers.expat try: import gzip GZIP_BASE = gzip.GzipFile except ImportError: gzip = None GZIP_BASE = object __version__ = '2.1.4b1' class FakeShutdownEvent(object): """Class to fake a threading.Event....
import socket import timeit import datetime import platform import threading import xml.parsers.expat try: import gzip GZIP_BASE = gzip.GzipFile except ImportError: gzip = None GZIP_BASE = object __version__ = '2.1.2' class FakeShutdownEvent(object): """Class to fake ...
# bind socket adress bind_address="0.0.0.0" # socket listent port, default is 8080 listen_port=8080 # you can specify the number of worker threads. default is 1 # auto: number of cpu cores, or more than 0 as desired # increasing the count increases memory usage worker_threads=1 # ...
If *source_address* is set it must be a tuple of (host, port) for the socket to bind as a source address before making the connection. An host of '' or port 0 tells the OS to use the default. Largely vendored from Python 2.7, modified to work with Python 2.4 """ host, port ...