style: better connection trace output

This commit is contained in:
mzz2017
2023-02-13 12:54:04 +08:00
parent a78f8c2cff
commit fe5c2482de
4 changed files with 24 additions and 20 deletions

View File

@ -124,7 +124,10 @@ const (
LoopbackIfIndex = 1
)
type LanWanFlag uint8
const (
IsWan = 0
IsLan = 1
LanWanFlag_IsWan LanWanFlag = iota
LanWanFlag_IsLan
LanWanFlag_NotApplicable
)