traffic.go 270 B

1234567891011
  1. package xray
  2. // Traffic represents network traffic statistics for Xray connections.
  3. // It tracks upload and download bytes for inbound or outbound traffic.
  4. type Traffic struct {
  5. IsInbound bool
  6. IsOutbound bool
  7. Tag string
  8. Up int64
  9. Down int64
  10. }