More status

This commit is contained in:
Josh Deprez 2024-04-23 14:44:22 +10:00
parent df22ea3a44
commit 339459d37a
Signed by: josh
SSH Key Fingerprint: SHA256:zZji7w1Ilh2RuUpbQcqkLPrqmRwpiCSycbF2EfKm6Kw
1 changed files with 9 additions and 0 deletions

View File

@ -246,6 +246,11 @@ func main() {
// ---------------------- Raw AppleTalk/AARP inbound ----------------------
go func() {
ctx, setStatus, done := status.AddSimpleItem(ctx, "EtherTalk inbound")
defer done()
setStatus("Running")
for {
if ctx.Err() != nil {
return
@ -365,6 +370,10 @@ func main() {
}()
// ----------------------------- AURP inbound -----------------------------
ctx, setStatus, done := status.AddSimpleItem(ctx, "AURP inbound")
defer done()
setStatus("Running")
for {
if ctx.Err() != nil {
return