3x-ui/xray/traffic.go
2025-09-20 09:35:50 +02:00

11 lines
270 B
Go

package xray
// Traffic represents network traffic statistics for Xray connections.
// It tracks upload and download bytes for inbound or outbound traffic.
type Traffic struct {
IsInbound bool
IsOutbound bool
Tag string
Up int64
Down int64
}