mirror of
https://github.com/nadoo/glider.git
synced 2025-02-23 17:35:40 +08:00
54 lines
1.1 KiB
Go
54 lines
1.1 KiB
Go
package vless
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"errors"
|
|
"io"
|
|
"net"
|
|
|
|
"github.com/nadoo/glider/pool"
|
|
)
|
|
|
|
// PktConn .
|
|
type PktConn struct {
|
|
net.Conn
|
|
}
|
|
|
|
// NewPktConn returns a PktConn.
|
|
func NewPktConn(c net.Conn) *PktConn {
|
|
return &PktConn{Conn: c}
|
|
}
|
|
|
|
// ReadFrom implements the necessary function of net.PacketConn.
|
|
// TODO: we know that we use it in proxy.RelayUDP and the length of b is enough, check it later.
|
|
func (pc *PktConn) ReadFrom(b []byte) (int, net.Addr, error) {
|
|
// Length
|
|
if _, err := io.ReadFull(pc.Conn, b[:2]); err != nil {
|
|
return 0, nil, err
|
|
}
|
|
length := int(binary.BigEndian.Uint16(b[:2]))
|
|
|
|
if len(b) < length {
|
|
return 0, nil, errors.New("buf size is not enough")
|
|
}
|
|
|
|
// Payload
|
|
n, err := io.ReadFull(pc.Conn, b[:length])
|
|
if err != nil {
|
|
return 0, nil, err
|
|
}
|
|
|
|
return n, nil, nil
|
|
}
|
|
|
|
// WriteTo implements the necessary function of net.PacketConn.
|
|
func (pc *PktConn) WriteTo(b []byte, addr net.Addr) (int, error) {
|
|
buf := pool.GetWriteBuffer()
|
|
defer pool.PutWriteBuffer(buf)
|
|
|
|
binary.Write(buf, binary.BigEndian, uint16(len(b)))
|
|
buf.Write(b)
|
|
|
|
return pc.Write(buf.Bytes())
|
|
}
|