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 {
|
2024-01-30 00:07:20 +03:30
|
|
|
IsInbound bool
|
|
|
|
|
IsOutbound bool
|
|
|
|
|
Tag string
|
|
|
|
|
Up int64
|
|
|
|
|
Down int64
|
2023-02-09 22:48:06 +03:30
|
|
|
}
|