This commit is contained in:
jdl
2026-06-15 06:25:47 +02:00
parent b4320c9330
commit fa933ae029
2 changed files with 14 additions and 17 deletions

View File

@@ -12,8 +12,8 @@ import (
type PeerState string
const (
StateRelayed = PeerState("RELAY")
StateProbing = PeerState("PROBE")
StateRelayed = PeerState("RELAY ")
StateProbing = PeerState("PROBE ")
StateDirect = PeerState("DIRECT")
)