55 lines
1.4 KiB
Go
55 lines
1.4 KiB
Go
package relay
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
|
"github.com/libp2p/go-libp2p-core/transport"
|
|
ma "github.com/multiformats/go-multiaddr"
|
|
)
|
|
|
|
func (d *RelayTransport) Dial(ctx context.Context, a ma.Multiaddr, p peer.ID) (transport.CapableConn, error) {
|
|
c, err := d.Relay().Dial(ctx, a, p)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
c.tagHop()
|
|
return d.upgrader.UpgradeOutbound(ctx, d, c, p)
|
|
}
|
|
|
|
func (r *Relay) Dial(ctx context.Context, a ma.Multiaddr, p peer.ID) (*Conn, error) {
|
|
// split /a/p2p-circuit/b into (/a, /p2p-circuit/b)
|
|
relayaddr, destaddr := ma.SplitFunc(a, func(c ma.Component) bool {
|
|
return c.Protocol().Code == P_CIRCUIT
|
|
})
|
|
|
|
// If the address contained no /p2p-circuit part, the second part is nil.
|
|
if destaddr == nil {
|
|
return nil, fmt.Errorf("%s is not a relay address", a)
|
|
}
|
|
|
|
if relayaddr == nil {
|
|
return nil, fmt.Errorf(
|
|
"can't dial a p2p-circuit without specifying a relay: %s",
|
|
a,
|
|
)
|
|
}
|
|
|
|
// Strip the /p2p-circuit prefix from the destaddr.
|
|
_, destaddr = ma.SplitFirst(destaddr)
|
|
|
|
dinfo := &peer.AddrInfo{ID: p, Addrs: []ma.Multiaddr{}}
|
|
if destaddr != nil {
|
|
dinfo.Addrs = append(dinfo.Addrs, destaddr)
|
|
}
|
|
|
|
var rinfo *peer.AddrInfo
|
|
rinfo, err := peer.AddrInfoFromP2pAddr(relayaddr)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error parsing multiaddr '%s': %s", relayaddr.String(), err)
|
|
}
|
|
|
|
return r.DialPeer(ctx, *rinfo, *dinfo)
|
|
}
|