feat: TUI visual improvements (nav bar, flow details) and timestamp support

This commit is contained in:
Jose Luis Montañes Ojados
2026-01-19 14:34:43 +01:00
parent efb50ffc8e
commit 063650976b
6 changed files with 229 additions and 13 deletions

View File

@@ -3,6 +3,7 @@ package sip
import (
"regexp"
"strings"
"time"
)
// Method represents a SIP method
@@ -27,6 +28,7 @@ const (
// Packet represents a parsed SIP packet
type Packet struct {
Timestamp time.Time
Raw string
IsRequest bool
Method Method