Squashed commit of the following:
commit84ac271bbbAuthor: lda <[email protected]> Date: Fri Nov 21 00:56:02 2025 +0700 six commit723b232123Author: lda <[email protected]> Date: Fri Nov 21 00:50:24 2025 +0700 expose the files, fmt now i can see what macs my computer is commitaab791eb5dAuthor: lda <[email protected]> Date: Fri Nov 21 00:38:37 2025 +0700 uh what commit1dc598b262Author: lda <[email protected]> Date: Tue Oct 21 01:10:19 2025 +0700 the commit of cherrypickingd7c34ee
This commit is contained in:
+1
-1
@@ -7,4 +7,4 @@ target = "armv7-unknown-linux-musleabihf"
|
|||||||
[alias]
|
[alias]
|
||||||
ldabr = "b -r --target=target.armv7-unknown-linux-musleabihf"
|
ldabr = "b -r --target=target.armv7-unknown-linux-musleabihf"
|
||||||
t = "test -- --nocapture --test-threads=1"
|
t = "test -- --nocapture --test-threads=1"
|
||||||
tdebug = "test -- --nocapture --test-threads=1 --show-output"
|
tdebug = "test -- --nocapture --test-threads=1 --show-output"
|
||||||
|
|||||||
@@ -1,8 +1,10 @@
|
|||||||
you should use block code to refence code, like so:
|
you should use block code to refence code, like so:
|
||||||
|
|
||||||
```rust
|
```rust
|
||||||
hello_world!(println);
|
hello_world!(println);
|
||||||
// indented lines
|
// indented lines
|
||||||
```
|
```
|
||||||
|
|
||||||
in the chat. Else it fucks up formatting.
|
in the chat. Else it fucks up formatting.
|
||||||
|
|
||||||
We work towards clean, maintainable design. im not the best at this thing.
|
We work towards clean, maintainable design. im not the best at this thing.
|
||||||
|
|||||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"rust-analyzer.cargo.target": "armv7-unknown-linux-musleabihf",
|
"rust-analyzer.cargo.target": "armv7-unknown-linux-musleabihf",
|
||||||
"rust-analyzer.diagnostics.disabled": ["unlinked-file"]
|
"rust-analyzer.diagnostics.disabled": ["unlinked-file"]
|
||||||
}
|
}
|
||||||
|
|||||||
Generated
+1
-1
@@ -1310,7 +1310,7 @@ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wakey"
|
name = "wakey"
|
||||||
version = "0.1.5"
|
version = "0.1.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"axum",
|
"axum",
|
||||||
"axum-extra",
|
"axum-extra",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wakey"
|
name = "wakey"
|
||||||
version = "0.1.5"
|
version = "0.1.6"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
publish = ["gitea"]
|
publish = ["gitea"]
|
||||||
|
|
||||||
|
|||||||
@@ -10,12 +10,12 @@
|
|||||||
START=50 # Run before Tailscale (typically START~80)
|
START=50 # Run before Tailscale (typically START~80)
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
LOGFILE=/var/log/update_tailscale.log
|
LOGFILE=/var/log/update_tailscale.log
|
||||||
MAX_RETRIES=10
|
MAX_RETRIES=10
|
||||||
RETRY_COUNT=0
|
RETRY_COUNT=0
|
||||||
|
|
||||||
# shellcheck disable=SC2016
|
# shellcheck disable=SC2016
|
||||||
sh -c '
|
sh -c '
|
||||||
while [ "$RETRY_COUNT" -lt "$MAX_RETRIES" ]; do
|
while [ "$RETRY_COUNT" -lt "$MAX_RETRIES" ]; do
|
||||||
if fn; then
|
if fn; then
|
||||||
echo "[update_tailscale] Success at $(date)" >>"$LOGFILE"
|
echo "[update_tailscale] Success at $(date)" >>"$LOGFILE"
|
||||||
|
|||||||
@@ -8,14 +8,14 @@ NAME=wakey
|
|||||||
BIN=/root/.bin/wakey
|
BIN=/root/.bin/wakey
|
||||||
|
|
||||||
start_service() {
|
start_service() {
|
||||||
procd_open_instance
|
procd_open_instance
|
||||||
procd_set_param command "$BIN"
|
procd_set_param command "$BIN"
|
||||||
procd_set_param respawn 5 1 0
|
procd_set_param respawn 5 1 0
|
||||||
procd_set_param stdout 1
|
procd_set_param stdout 1
|
||||||
procd_set_param stderr 1
|
procd_set_param stderr 1
|
||||||
procd_close_instance
|
procd_close_instance
|
||||||
}
|
}
|
||||||
|
|
||||||
stop_service() {
|
stop_service() {
|
||||||
: # procd manages the process; nothing to do here
|
: # procd manages the process; nothing to do here
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ pids="$(pidof wakey 2>/dev/null)"
|
|||||||
|
|
||||||
# 2) Fallback: ps | awk (avoid matching awk/grep themselves)
|
# 2) Fallback: ps | awk (avoid matching awk/grep themselves)
|
||||||
if [ -z "$pids" ]; then
|
if [ -z "$pids" ]; then
|
||||||
pids="$(ps w 2>/dev/null | awk '/\/\.bin\/wakey/ && $0 !~ /awk/ {print $1}')"
|
pids="$(ps w 2>/dev/null | awk '/\/\.bin\/wakey/ && $0 !~ /awk/ {print $1}')"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[ -n "$pids" ] || exit 0
|
[ -n "$pids" ] || exit 0
|
||||||
@@ -18,7 +18,7 @@ kill -TERM "$pids" 2>/dev/null || true
|
|||||||
usleep 250000 # uhhh sleep is stupid
|
usleep 250000 # uhhh sleep is stupid
|
||||||
remain=""
|
remain=""
|
||||||
for p in $pids; do
|
for p in $pids; do
|
||||||
kill -0 "$p" 2>/dev/null && remain="$remain $p"
|
kill -0 "$p" 2>/dev/null && remain="$remain $p"
|
||||||
done
|
done
|
||||||
[ -z "$remain" ] || kill -KILL "$remain" 2>/dev/null || true
|
[ -z "$remain" ] || kill -KILL "$remain" 2>/dev/null || true
|
||||||
|
|
||||||
|
|||||||
@@ -3,22 +3,22 @@
|
|||||||
set -e
|
set -e
|
||||||
# 0th step from lda is to move the pre assed resolv.conf to the real resolv.conf
|
# 0th step from lda is to move the pre assed resolv.conf to the real resolv.conf
|
||||||
if [ -f /tmp/resolv.conf ]; then
|
if [ -f /tmp/resolv.conf ]; then
|
||||||
cp -af /tmp/resolv.conf /etc/resolv.conf
|
cp -af /tmp/resolv.conf /etc/resolv.conf
|
||||||
elif [ -f /rom/etc/resolv.conf ]; then
|
elif [ -f /rom/etc/resolv.conf ]; then
|
||||||
cp -af /rom/etc/resolv.conf /etc/resolv.conf
|
cp -af /rom/etc/resolv.conf /etc/resolv.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -x "$(which tailscale)" ]; then
|
if [ -x "$(which tailscale)" ]; then
|
||||||
tailscale update
|
tailscale update
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# 1. Fetch the latest version number from Tailscale's site
|
# 1. Fetch the latest version number from Tailscale's site
|
||||||
LATEST=$(curl -s https://pkgs.tailscale.com/stable/ | grep -Eo 'tailscale_[0-9\.]+_arm.tgz' | head -n1)
|
LATEST=$(curl -s https://pkgs.tailscale.com/stable/ | grep -Eo 'tailscale_[0-9\.]+_arm.tgz' | head -n1)
|
||||||
|
|
||||||
[ -z "$LATEST" ] && {
|
[ -z "$LATEST" ] && {
|
||||||
echo "❌ Couldn't find latest ARM binary."
|
echo "❌ Couldn't find latest ARM binary."
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
URL="https://pkgs.tailscale.com/stable/${LATEST}"
|
URL="https://pkgs.tailscale.com/stable/${LATEST}"
|
||||||
@@ -26,8 +26,8 @@ URL="https://pkgs.tailscale.com/stable/${LATEST}"
|
|||||||
cd /var/tmp
|
cd /var/tmp
|
||||||
|
|
||||||
if [ -f "$LATEST" ]; then
|
if [ -f "$LATEST" ]; then
|
||||||
echo "file exists"
|
echo "file exists"
|
||||||
rm "$LATEST"
|
rm "$LATEST"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Downloading $LATEST..."
|
echo "Downloading $LATEST..."
|
||||||
|
|||||||
@@ -24,113 +24,113 @@ STAGING="$TMPDIR/wakey-rootfs.$$.$ARCH"
|
|||||||
|
|
||||||
log() { echo "[update_wakey] $*"; }
|
log() { echo "[update_wakey] $*"; }
|
||||||
fail() {
|
fail() {
|
||||||
echo "[update_wakey] ERROR: $*" >&2
|
echo "[update_wakey] ERROR: $*" >&2
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
http_get() {
|
http_get() {
|
||||||
# http_get <url>
|
# http_get <url>
|
||||||
if command -v uclient-fetch >/dev/null 2>&1; then
|
if command -v uclient-fetch >/dev/null 2>&1; then
|
||||||
# uclient-fetch supports -O -, write to stdout
|
# uclient-fetch supports -O -, write to stdout
|
||||||
uclient-fetch -O - "$1" 2>/dev/null || return 1
|
uclient-fetch -O - "$1" 2>/dev/null || return 1
|
||||||
elif command -v wget >/dev/null 2>&1; then
|
elif command -v wget >/dev/null 2>&1; then
|
||||||
# shellcheck disable=SC2086
|
# shellcheck disable=SC2086
|
||||||
wget ${WAKEY_INSECURE:+--no-check-certificate} -qO- "$1" || return 1
|
wget ${WAKEY_INSECURE:+--no-check-certificate} -qO- "$1" || return 1
|
||||||
elif command -v curl >/dev/null 2>&1; then
|
elif command -v curl >/dev/null 2>&1; then
|
||||||
if [ -n "${WAKEY_INSECURE:-}" ]; then
|
if [ -n "${WAKEY_INSECURE:-}" ]; then
|
||||||
curl -fsSL -k "$1" || return 1
|
curl -fsSL -k "$1" || return 1
|
||||||
else
|
else
|
||||||
curl -fsSL "$1" || return 1
|
curl -fsSL "$1" || return 1
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
return 2
|
return 2
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
fetch() {
|
fetch() {
|
||||||
# fetch <url> <out>
|
# fetch <url> <out>
|
||||||
if command -v uclient-fetch >/dev/null 2>&1; then
|
if command -v uclient-fetch >/dev/null 2>&1; then
|
||||||
uclient-fetch -O "$2" "$1" || return 1
|
uclient-fetch -O "$2" "$1" || return 1
|
||||||
elif command -v wget >/dev/null 2>&1; then
|
elif command -v wget >/dev/null 2>&1; then
|
||||||
wget ${WAKEY_INSECURE:+--no-check-certificate} -O "$2" "$1" || return 1
|
wget ${WAKEY_INSECURE:+--no-check-certificate} -O "$2" "$1" || return 1
|
||||||
elif command -v curl >/dev/null 2>&1; then
|
elif command -v curl >/dev/null 2>&1; then
|
||||||
if [ -n "${WAKEY_INSECURE:-}" ]; then
|
if [ -n "${WAKEY_INSECURE:-}" ]; then
|
||||||
curl -fSL -k -o "$2" "$1" || return 1
|
curl -fSL -k -o "$2" "$1" || return 1
|
||||||
else
|
else
|
||||||
curl -fSL -o "$2" "$1" || return 1
|
curl -fSL -o "$2" "$1" || return 1
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
return 2
|
return 2
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
latest_asset_url() {
|
latest_asset_url() {
|
||||||
# prints URL to stdout, returns 0 on success (public release only)
|
# prints URL to stdout, returns 0 on success (public release only)
|
||||||
HOST=$1 OWNER=$2 REPO=$3 ARCH=$4
|
HOST=$1 OWNER=$2 REPO=$3 ARCH=$4
|
||||||
API="https://$HOST/api/v1/repos/$OWNER/$REPO/releases/latest"
|
API="https://$HOST/api/v1/repos/$OWNER/$REPO/releases/latest"
|
||||||
RESP=$(http_get "$API") || return 1
|
RESP=$(http_get "$API") || return 1
|
||||||
# Extract the first browser_download_url ending with our ARCH .tgz (BusyBox-friendly)
|
# Extract the first browser_download_url ending with our ARCH .tgz (BusyBox-friendly)
|
||||||
echo "$RESP" |
|
echo "$RESP" |
|
||||||
grep -o '"browser_download_url"[[:space:]]*:[[:space:]]*"[^"]*'"$ARCH"'\.tgz"' |
|
grep -o '"browser_download_url"[[:space:]]*:[[:space:]]*"[^"]*'"$ARCH"'\.tgz"' |
|
||||||
head -n1 |
|
head -n1 |
|
||||||
cut -d '"' -f 4
|
cut -d '"' -f 4
|
||||||
}
|
}
|
||||||
|
|
||||||
main() {
|
main() {
|
||||||
[ -f "$FLAG" ] && return
|
[ -f "$FLAG" ] && return
|
||||||
URL="${WAKEY_TGZ_URL:-}"
|
URL="${WAKEY_TGZ_URL:-}"
|
||||||
if [ -z "$URL" ]; then
|
if [ -z "$URL" ]; then
|
||||||
HOST=${WAKEY_HOST:-git.ldlda.com}
|
HOST=${WAKEY_HOST:-git.ldlda.com}
|
||||||
OWNER=${WAKEY_OWNER:-lda}
|
OWNER=${WAKEY_OWNER:-lda}
|
||||||
REPO=${WAKEY_REPO:-wakey}
|
REPO=${WAKEY_REPO:-wakey}
|
||||||
if [ -n "${WAKEY_VERSION:-}" ]; then
|
if [ -n "${WAKEY_VERSION:-}" ]; then
|
||||||
FILE="wakey-rootfs-${WAKEY_VERSION}-${ARCH}.tgz"
|
FILE="wakey-rootfs-${WAKEY_VERSION}-${ARCH}.tgz"
|
||||||
URL="https://$HOST/$OWNER/$REPO/releases/download/${WAKEY_VERSION}/$FILE"
|
URL="https://$HOST/$OWNER/$REPO/releases/download/${WAKEY_VERSION}/$FILE"
|
||||||
else
|
else
|
||||||
URL=$(latest_asset_url "$HOST" "$OWNER" "$REPO" "$ARCH") || fail "unable to resolve latest asset URL"
|
URL=$(latest_asset_url "$HOST" "$OWNER" "$REPO" "$ARCH") || fail "unable to resolve latest asset URL"
|
||||||
[ -n "$URL" ] || fail "no asset URL found for arch $ARCH"
|
[ -n "$URL" ] || fail "no asset URL found for arch $ARCH"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
log "fetching $URL"
|
log "fetching $URL"
|
||||||
if ! fetch "$URL" "$TMPFILE"; then
|
if ! fetch "$URL" "$TMPFILE"; then
|
||||||
fail "download failed"
|
fail "download failed"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
log "installing"
|
log "installing"
|
||||||
mkdir -p "$TMPDIR" "$STAGING"
|
mkdir -p "$TMPDIR" "$STAGING"
|
||||||
tar -xz -f "$TMPFILE" -C "$STAGING" || fail "extract failed"
|
tar -xz -f "$TMPFILE" -C "$STAGING" || fail "extract failed"
|
||||||
|
|
||||||
# Ensure execute bits on staged files we know should be executable
|
# Ensure execute bits on staged files we know should be executable
|
||||||
for f in \
|
for f in \
|
||||||
"$STAGING/etc/init.d/"* \
|
"$STAGING/etc/init.d/"* \
|
||||||
"$STAGING/etc/ldlda_help/"*.sh \
|
"$STAGING/etc/ldlda_help/"*.sh \
|
||||||
"$STAGING/root/.bin/wakey" \
|
"$STAGING/root/.bin/wakey" \
|
||||||
"$STAGING/root/.bin/kill_wakey.sh" \
|
"$STAGING/root/.bin/kill_wakey.sh" \
|
||||||
"$STAGING/root/.bin/remote_deploy_wakey.sh"; do
|
"$STAGING/root/.bin/remote_deploy_wakey.sh"; do
|
||||||
[ -e "$f" ] && chmod +x "$f" 2>/dev/null || true
|
[ -e "$f" ] && chmod +x "$f" 2>/dev/null || true
|
||||||
done
|
done
|
||||||
|
|
||||||
# Normalize line endings for shell scripts (avoid CRLF issues on OpenWrt)
|
# Normalize line endings for shell scripts (avoid CRLF issues on OpenWrt)
|
||||||
for f in \
|
for f in \
|
||||||
"$STAGING/etc/init.d/"* \
|
"$STAGING/etc/init.d/"* \
|
||||||
"$STAGING/etc/ldlda_help/"*.sh \
|
"$STAGING/etc/ldlda_help/"*.sh \
|
||||||
"$STAGING/root/.bin/"*.sh; do
|
"$STAGING/root/.bin/"*.sh; do
|
||||||
[ -f "$f" ] && sed -i 's/\r$//' "$f" 2>/dev/null || true
|
[ -f "$f" ] && sed -i 's/\r$//' "$f" 2>/dev/null || true
|
||||||
done
|
done
|
||||||
|
|
||||||
# Copy staged tree into /
|
# Copy staged tree into /
|
||||||
tar -C "$STAGING" -cf - . | tar -C / -xpf - || fail "install copy failed"
|
tar -C "$STAGING" -cf - . | tar -C / -xpf - || fail "install copy failed"
|
||||||
|
|
||||||
rm -f "$TMPFILE"
|
rm -f "$TMPFILE"
|
||||||
rm -rf "$STAGING"
|
rm -rf "$STAGING"
|
||||||
|
|
||||||
if [ -f /etc/init.d/wakey ]; then
|
if [ -f /etc/init.d/wakey ]; then
|
||||||
/etc/init.d/wakey enable || true
|
/etc/init.d/wakey enable || true
|
||||||
/etc/init.d/wakey restart || /etc/init.d/wakey start || true
|
/etc/init.d/wakey restart || /etc/init.d/wakey start || true
|
||||||
fi
|
fi
|
||||||
touch "$FLAG"
|
touch "$FLAG"
|
||||||
log "done"
|
log "done"
|
||||||
}
|
}
|
||||||
|
|
||||||
main "$@"
|
main "$@"
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ class RsAssetModule:
|
|||||||
body = "\n".join(files + subs)
|
body = "\n".join(files + subs)
|
||||||
return (
|
return (
|
||||||
f"pub mod {sanitize(self.folder.name).lower()} {{" * self.full
|
f"pub mod {sanitize(self.folder.name).lower()} {{" * self.full
|
||||||
+ f"\n{indent(body, 4*self.full)}\n"
|
+ f"\n{indent(body, 4 * self.full)}\n"
|
||||||
+ self.full * "}"
|
+ self.full * "}"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -10,32 +10,32 @@ INIT="/etc/init.d/wakey"
|
|||||||
KILL="/root/.bin/kill_wakey.sh"
|
KILL="/root/.bin/kill_wakey.sh"
|
||||||
|
|
||||||
if [ -z "$BIN_TMP" ] || [ -z "$DEST" ]; then
|
if [ -z "$BIN_TMP" ] || [ -z "$DEST" ]; then
|
||||||
echo "usage: $0 <bin_tmp> <dest_path> [restart_flag]" >&2
|
echo "usage: $0 <bin_tmp> <dest_path> [restart_flag]" >&2
|
||||||
exit 2
|
exit 2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[ -f "$BIN_TMP" ] || {
|
[ -f "$BIN_TMP" ] || {
|
||||||
echo "tmp binary not found: $BIN_TMP" >&2
|
echo "tmp binary not found: $BIN_TMP" >&2
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
chmod +x "$BIN_TMP" || true
|
chmod +x "$BIN_TMP" || true
|
||||||
|
|
||||||
if [ "$RESTART" = "1" ]; then
|
if [ "$RESTART" = "1" ]; then
|
||||||
if [ -x "$INIT" ]; then
|
if [ -x "$INIT" ]; then
|
||||||
"$INIT" stop || true
|
"$INIT" stop || true
|
||||||
elif [ -x "$KILL" ]; then
|
elif [ -x "$KILL" ]; then
|
||||||
sh "$KILL" || true
|
sh "$KILL" || true
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mv -f "$BIN_TMP" "$DEST"
|
mv -f "$BIN_TMP" "$DEST"
|
||||||
|
|
||||||
if [ "$RESTART" = "1" ]; then
|
if [ "$RESTART" = "1" ]; then
|
||||||
if [ -x "$INIT" ]; then
|
if [ -x "$INIT" ]; then
|
||||||
"$INIT" start || "$INIT" restart || true
|
"$INIT" start || "$INIT" restart || true
|
||||||
else
|
else
|
||||||
nohup "$DEST" >/dev/null 2>&1 &
|
nohup "$DEST" >/dev/null 2>&1 &
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ pub mod status;
|
|||||||
pub mod wake;
|
pub mod wake;
|
||||||
|
|
||||||
use crate::assets;
|
use crate::assets;
|
||||||
|
use crate::dhcpparse::load_mac_name_cache;
|
||||||
use crate::route::api::ip;
|
use crate::route::api::ip;
|
||||||
use crate::route::api::status_redirect;
|
use crate::route::api::status_redirect;
|
||||||
use crate::route::api::status_smart_redirect;
|
use crate::route::api::status_smart_redirect;
|
||||||
@@ -14,6 +15,8 @@ use crate::route::dhcp::get_dhcp_leases;
|
|||||||
use crate::route::status::get_status_json;
|
use crate::route::status::get_status_json;
|
||||||
use crate::route::wake::wake_multi;
|
use crate::route::wake::wake_multi;
|
||||||
|
|
||||||
|
use axum::Json;
|
||||||
|
use axum::response::IntoResponse;
|
||||||
use axum::routing::post;
|
use axum::routing::post;
|
||||||
use axum::{Router, http::header, response::Html, routing::get};
|
use axum::{Router, http::header, response::Html, routing::get};
|
||||||
|
|
||||||
@@ -57,4 +60,13 @@ pub fn api_router() -> Router {
|
|||||||
.route("/devs", get(devs_router))
|
.route("/devs", get(devs_router))
|
||||||
.route("/wake", post(wake_multi))
|
.route("/wake", post(wake_multi))
|
||||||
.route("/ips/{name}", get(ip))
|
.route("/ips/{name}", get(ip))
|
||||||
|
.route(
|
||||||
|
"/mac-cache",
|
||||||
|
get(|| async {
|
||||||
|
match load_mac_name_cache().await {
|
||||||
|
Ok(h) => Json(h).into_response(),
|
||||||
|
Err(e) => e.to_string().into_response(),
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -47,14 +47,6 @@ pub struct Filters {
|
|||||||
pub macs: Vec<MacAddr>,
|
pub macs: Vec<MacAddr>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[deprecated = "use ApiError"]
|
|
||||||
#[skip_serializing_none]
|
|
||||||
#[derive(Debug, Serialize, Default)]
|
|
||||||
pub struct StatusError {
|
|
||||||
pub name: Option<String>,
|
|
||||||
pub error: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn get_status_json(
|
pub async fn get_status_json(
|
||||||
Query(DeviceQuery {
|
Query(DeviceQuery {
|
||||||
name,
|
name,
|
||||||
|
|||||||
Reference in New Issue
Block a user