Files
trihuy-russian/xray/traffic.go
T

12 lines
270 B
Go
Raw Normal View History

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