1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-06 12:04:29 -04:00
v2fly/transport/internet/connection.go

35 lines
594 B
Go
Raw Normal View History

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
ReadCounter stats.Counter
WriteCounter 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.ReadCounter != nil {
c.ReadCounter.Add(int64(nBytes))
2018-04-11 18:10:14 -04:00
}
return nBytes, err
}
func (c *StatCouterConnection) Write(b []byte) (int, error) {
nBytes, err := c.Connection.Write(b)
if c.WriteCounter != nil {
c.WriteCounter.Add(int64(nBytes))
2018-04-11 18:10:14 -04:00
}
return nBytes, err
}