2
0
mirror of synced 2025-02-24 06:38:14 +00:00
torrent/webrtc.go
Matt Joiner a5877a938c
Fix webrtcNetAddr.String for IPv6
(cherry picked from commit d37354e6743e905d42689e88068058dd45e5be43)
2022-07-12 15:54:36 +10:00

69 lines
1.6 KiB
Go

package torrent
import (
"net"
"strconv"
"time"
"github.com/anacrolix/torrent/webtorrent"
"github.com/pion/datachannel"
"github.com/pion/webrtc/v3"
)
const webrtcNetwork = "webrtc"
type webrtcNetConn struct {
datachannel.ReadWriteCloser
webtorrent.DataChannelContext
}
type webrtcNetAddr struct {
*webrtc.ICECandidate
}
var _ net.Addr = webrtcNetAddr{}
func (webrtcNetAddr) Network() string {
// Now that we have the ICE candidate, we can tell if it's over udp or tcp. But should we use
// that for the network?
return webrtcNetwork
}
func (me webrtcNetAddr) String() string {
return net.JoinHostPort(me.Address, strconv.FormatUint(uint64(me.Port), 10))
}
func (me webrtcNetConn) LocalAddr() net.Addr {
// I'm not sure if this evolves over time. It might also be unavailable if the PeerConnection is
// closed or closes itself. The same concern applies to RemoteAddr.
pair, err := me.DataChannelContext.GetSelectedIceCandidatePair()
if err != nil {
panic(err)
}
return webrtcNetAddr{pair.Local}
}
func (me webrtcNetConn) RemoteAddr() net.Addr {
// See comments on LocalAddr.
pair, err := me.DataChannelContext.GetSelectedIceCandidatePair()
if err != nil {
panic(err)
}
return webrtcNetAddr{pair.Remote}
}
// Do we need these for WebRTC connections exposed as net.Conns? Can we set them somewhere inside
// PeerConnection or on the channel or some transport?
func (w webrtcNetConn) SetDeadline(t time.Time) error {
return nil
}
func (w webrtcNetConn) SetReadDeadline(t time.Time) error {
return nil
}
func (w webrtcNetConn) SetWriteDeadline(t time.Time) error {
return nil
}