stream-server/srt/tunnel.go

13 lines
126 B
Go
Raw Normal View History

2023-09-18 11:51:55 +05:00
package srt
import (
"net"
)
type Tunnel struct {
socket net.PacketConn
peer net.Addr
queue chan *Packet
broken bool
}