mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
21 lines
307 B
Go
21 lines
307 B
Go
package udp
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/lucas-clemente/quic-go"
|
|
)
|
|
|
|
const udpBufferSize = 4096
|
|
|
|
type ObfsUDPConn struct {
|
|
net.UDPConn
|
|
quic.Obfuscator
|
|
}
|
|
|
|
func NewObfsUDPConn(udpConn *net.UDPConn, obfs quic.Obfuscator) *ObfsUDPConn {
|
|
return &ObfsUDPConn{
|
|
UDPConn: *udpConn,
|
|
Obfuscator: obfs,
|
|
}
|
|
}
|