From 6d52cf0259981062efa108c99f1fe75c5e71bc72 Mon Sep 17 00:00:00 2001 From: Jake Daynes Date: Fri, 13 Mar 2026 01:43:08 -0700 Subject: [PATCH] add secure bool --- stream.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stream.go b/stream.go index c0142b9..f7d97c4 100644 --- a/stream.go +++ b/stream.go @@ -24,6 +24,8 @@ type Stream struct { Address netip.Addr `json:"address" validate:"required"` Port uint16 `json:"port" validate:"required"` + Secure bool `json:"secure"` + CredentialsFound bool `json:"credentials_found"` RouteFound bool `json:"route_found"` Available bool `json:"available"`