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

View file

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