Welcome to mirror list, hosted at ThFree Co, Russian Federation.

traffic.go « xray - github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3547573cfb63d9bdd28a82ecae245c098a7ebd5f (plain)
1
2
3
4
5
6
7
8
9
10
11
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
}