Add destination type constants for packet handling in types.go

This commit is contained in:
2025-10-07 21:31:45 -05:00
parent cc89bfef6e
commit b548e5711e

View File

@@ -4,6 +4,13 @@ import (
"time"
)
// Destination type constants
const (
DESTINATION_SINGLE = 0x00
DESTINATION_GROUP = 0x01
DESTINATION_PLAIN = 0x02
)
// Transport related types
type TransportMode byte
type PathStatus byte