1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 11:35:23 +00:00
v2fly/transport/internet/connection.go

55 lines
1023 B
Go
Raw Normal View History

2016-06-14 20:54:08 +00:00
package internet
import (
"net"
2018-10-14 06:23:41 +00:00
2022-01-02 16:19:52 +00:00
"github.com/v2fly/v2ray-core/v5/common"
"github.com/v2fly/v2ray-core/v5/features/stats"
2016-06-14 20:54:08 +00:00
)
type Connection interface {
net.Conn
}
2018-04-11 22:10:14 +00:00
type AbstractPacketConnReader interface {
ReadFrom(p []byte) (n int, addr net.Addr, err error)
}
type AbstractPacketConnWriter interface {
WriteTo(p []byte, addr net.Addr) (n int, err error)
}
type AbstractPacketConn interface {
AbstractPacketConnReader
AbstractPacketConnWriter
common.Closable
}
type PacketConn interface {
AbstractPacketConn
net.PacketConn
}
2018-04-11 22:10:14 +00:00
type StatCouterConnection struct {
Connection
ReadCounter stats.Counter
WriteCounter stats.Counter
2018-04-11 22:10:14 +00: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 22:10:14 +00: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 22:10:14 +00:00
}
return nBytes, err
}