mirror of
https://github.com/nadoo/glider.git
synced 2025-02-24 01:45:39 +08:00
92 lines
1.8 KiB
Go
92 lines
1.8 KiB
Go
package conn
|
|
|
|
import (
|
|
"bufio"
|
|
"io"
|
|
"net"
|
|
"time"
|
|
)
|
|
|
|
// UDPBufSize is the size of udp buffer
|
|
const UDPBufSize = 65536
|
|
|
|
// Conn struct
|
|
type Conn struct {
|
|
r *bufio.Reader
|
|
net.Conn
|
|
}
|
|
|
|
// NewConn .
|
|
func NewConn(c net.Conn) Conn {
|
|
return Conn{bufio.NewReader(c), c}
|
|
}
|
|
|
|
// NewConnSize .
|
|
func NewConnSize(c net.Conn, n int) Conn {
|
|
return Conn{bufio.NewReaderSize(c, n), c}
|
|
}
|
|
|
|
// Peek .
|
|
func (c Conn) Peek(n int) ([]byte, error) {
|
|
return c.r.Peek(n)
|
|
}
|
|
|
|
// Read .
|
|
func (c Conn) Read(p []byte) (int, error) {
|
|
return c.r.Read(p)
|
|
}
|
|
|
|
// Relay .
|
|
func Relay(left, right net.Conn) (int64, int64, error) {
|
|
type res struct {
|
|
N int64
|
|
Err error
|
|
}
|
|
ch := make(chan res)
|
|
|
|
go func() {
|
|
n, err := io.Copy(right, left)
|
|
right.SetDeadline(time.Now()) // wake up the other goroutine blocking on right
|
|
left.SetDeadline(time.Now()) // wake up the other goroutine blocking on left
|
|
ch <- res{n, err}
|
|
}()
|
|
|
|
n, err := io.Copy(left, right)
|
|
right.SetDeadline(time.Now()) // wake up the other goroutine blocking on right
|
|
left.SetDeadline(time.Now()) // wake up the other goroutine blocking on left
|
|
rs := <-ch
|
|
|
|
if err == nil {
|
|
err = rs.Err
|
|
}
|
|
return n, rs.N, err
|
|
}
|
|
|
|
// TimedCopy copy from src to dst at target with read timeout
|
|
func TimedCopy(dst net.PacketConn, target net.Addr, src net.PacketConn, timeout time.Duration) error {
|
|
buf := make([]byte, UDPBufSize)
|
|
for {
|
|
src.SetReadDeadline(time.Now().Add(timeout))
|
|
n, _, err := src.ReadFrom(buf)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = dst.WriteTo(buf[:n], target)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
// OutboundIP returns preferred outbound ip of this machine
|
|
func OutboundIP() string {
|
|
conn, err := net.Dial("udp", "8.8.8.8:80")
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
defer conn.Close()
|
|
|
|
return conn.LocalAddr().(*net.UDPAddr).IP.String()
|
|
}
|