mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
34 lines
598 B
Go
34 lines
598 B
Go
package quic
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
// A sendConn allows sending using a simple Write() on a non-connected packet conn.
|
|
type sendConn interface {
|
|
Write([]byte) error
|
|
Close() error
|
|
LocalAddr() net.Addr
|
|
RemoteAddr() net.Addr
|
|
}
|
|
|
|
type sconn struct {
|
|
net.PacketConn
|
|
|
|
remoteAddr net.Addr
|
|
}
|
|
|
|
var _ sendConn = &sconn{}
|
|
|
|
func newSendConn(c net.PacketConn, remote net.Addr) sendConn {
|
|
return &sconn{PacketConn: c, remoteAddr: remote}
|
|
}
|
|
|
|
func (c *sconn) Write(p []byte) error {
|
|
_, err := c.PacketConn.WriteTo(p, c.remoteAddr)
|
|
return err
|
|
}
|
|
|
|
func (c *sconn) RemoteAddr() net.Addr {
|
|
return c.remoteAddr
|
|
}
|