forked from WLAN-Pi/wlanpi-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implement ping and speed test services
- Loading branch information
Michael Ketchel
committed
Nov 14, 2024
1 parent
406d885
commit 2e94f93
Showing
5 changed files
with
258 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
wlanpi-core (1.0.5-5) UNRELEASED; urgency=medium | ||
wlanpi-core (1.0.5-6) UNRELEASED; urgency=medium | ||
|
||
[ Michael Ketchel ] | ||
* Draft build of new wlan control features | ||
|
@@ -8,8 +8,9 @@ wlanpi-core (1.0.5-5) UNRELEASED; urgency=medium | |
* Version bump for build | ||
* Add automatic default gateway configuration for wlan api | ||
* Fix some auto gateway config quirks | ||
* implement ping and speed test services | ||
|
||
-- Michael Ketchel <[email protected]> Wed, 13 Nov 2024 21:22:34 +0000 | ||
-- Michael Ketchel <[email protected]> Thu, 14 Nov 2024 05:09:35 +0000 | ||
|
||
wlanpi-core (1.0.5-1) unstable; urgency=high | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
from .utils import ReachabilityTest, SpeedTest, Ufw, Usb | ||
from .utils import ( | ||
Iperf2Result, | ||
IperfRequest, | ||
PingRequest, | ||
PingResponse, | ||
PingResult, | ||
ReachabilityTest, | ||
SpeedTest, | ||
Ufw, | ||
Usb, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters