Skip to content

Commit

Permalink
backend/ipn: m code comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ignoramous committed Nov 13, 2024
1 parent b5f4246 commit 78b6d8c
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions intra/backend/ipn_proxies.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
package backend

const ( // see ipn/proxies.go
// nb: Base proxies are Catch-All / fallback proxies
// IDs for default proxies

Block = "Block" // blocks all traffic
Expand Down Expand Up @@ -40,12 +39,18 @@ const ( // see ipn/proxies.go

// status of proxies

TNT = 2 // proxy UP but not responding
TZZ = 1 // proxy idle
TUP = 0 // proxy UP but not yet OK
TOK = -1 // proxy OK
TKO = -2 // proxy not OK
END = -3 // proxy stopped
// proxy UP but not responding
TNT = 2
// proxy idle
TZZ = 1
// proxy UP but not yet OK
TUP = 0
// proxy OK
TOK = -1
// proxy not OK
TKO = -2
// proxy stopped
END = -3
)

type Rpn interface {
Expand Down

0 comments on commit 78b6d8c

Please sign in to comment.