3x-ui/xray/traffic.go

12 lines
270 B
Go
Raw Permalink Normal View History

2023-02-09 19:18:06 +00:00
package xray
2025-09-20 07:35:50 +00:00
// Traffic represents network traffic statistics for Xray connections.
// It tracks upload and download bytes for inbound or outbound traffic.
2023-02-09 19:18:06 +00:00
type Traffic struct {
IsInbound bool
IsOutbound bool
Tag string
Up int64
Down int64
2023-02-09 19:18:06 +00:00
}