mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-05 03:13:59 +00:00
65 lines
1.3 KiB
Go
65 lines
1.3 KiB
Go
package net
|
|
|
|
import (
|
|
"bufio"
|
|
"net"
|
|
|
|
"github.com/sagernet/sing/common/buf"
|
|
sing_bufio "github.com/sagernet/sing/common/bufio"
|
|
"github.com/sagernet/sing/common/network"
|
|
)
|
|
|
|
var _ network.ExtendedConn = (*BufferedConn)(nil)
|
|
|
|
type BufferedConn struct {
|
|
r *bufio.Reader
|
|
network.ExtendedConn
|
|
}
|
|
|
|
func NewBufferedConn(c net.Conn) *BufferedConn {
|
|
if bc, ok := c.(*BufferedConn); ok {
|
|
return bc
|
|
}
|
|
return &BufferedConn{bufio.NewReader(c), sing_bufio.NewExtendedConn(c)}
|
|
}
|
|
|
|
// Reader returns the internal bufio.Reader.
|
|
func (c *BufferedConn) Reader() *bufio.Reader {
|
|
return c.r
|
|
}
|
|
|
|
// Peek returns the next n bytes without advancing the reader.
|
|
func (c *BufferedConn) Peek(n int) ([]byte, error) {
|
|
return c.r.Peek(n)
|
|
}
|
|
|
|
func (c *BufferedConn) Read(p []byte) (int, error) {
|
|
return c.r.Read(p)
|
|
}
|
|
|
|
func (c *BufferedConn) ReadByte() (byte, error) {
|
|
return c.r.ReadByte()
|
|
}
|
|
|
|
func (c *BufferedConn) UnreadByte() error {
|
|
return c.r.UnreadByte()
|
|
}
|
|
|
|
func (c *BufferedConn) Buffered() int {
|
|
return c.r.Buffered()
|
|
}
|
|
|
|
func (c *BufferedConn) ReadBuffer(buffer *buf.Buffer) (err error) {
|
|
if c.r.Buffered() > 0 {
|
|
_, err = buffer.ReadOnceFrom(c.r)
|
|
return
|
|
}
|
|
return c.ExtendedConn.ReadBuffer(buffer)
|
|
}
|
|
|
|
func (c *BufferedConn) Upstream() any {
|
|
if wrapper, ok := c.ExtendedConn.(*sing_bufio.ExtendedConnWrapper); ok {
|
|
return wrapper.Conn
|
|
}
|
|
return c.ExtendedConn
|
|
}
|