2016-06-14 16:54:08 -04:00
|
|
|
package internet
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
2018-10-14 02:23:41 -04:00
|
|
|
|
|
|
|
"v2ray.com/core/features/stats"
|
2016-06-14 16:54:08 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type Connection interface {
|
|
|
|
net.Conn
|
|
|
|
}
|
2018-04-11 18:10:14 -04:00
|
|
|
|
|
|
|
type StatCouterConnection struct {
|
|
|
|
Connection
|
2018-10-14 02:23:41 -04:00
|
|
|
Uplink stats.Counter
|
|
|
|
Downlink stats.Counter
|
2018-04-11 18:10:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StatCouterConnection) Read(b []byte) (int, error) {
|
|
|
|
nBytes, err := c.Connection.Read(b)
|
|
|
|
if c.Uplink != nil {
|
|
|
|
c.Uplink.Add(int64(nBytes))
|
|
|
|
}
|
|
|
|
|
|
|
|
return nBytes, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StatCouterConnection) Write(b []byte) (int, error) {
|
|
|
|
nBytes, err := c.Connection.Write(b)
|
|
|
|
if c.Downlink != nil {
|
|
|
|
c.Downlink.Add(int64(nBytes))
|
|
|
|
}
|
|
|
|
return nBytes, err
|
|
|
|
}
|