From b548e5711ef1268c69a415ccc8f685f756b67f99 Mon Sep 17 00:00:00 2001 From: Ivan Date: Tue, 7 Oct 2025 21:31:45 -0500 Subject: [PATCH] Add destination type constants for packet handling in types.go --- pkg/common/types.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkg/common/types.go b/pkg/common/types.go index 159d084..4d4880b 100644 --- a/pkg/common/types.go +++ b/pkg/common/types.go @@ -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