mirror of
https://github.com/status-im/status-go.git
synced 2025-02-25 13:16:15 +00:00
Update vendor Integrate rendezvous into status node Add a test with failover using rendezvous Use multiple servers in client Use discovery V5 by default and test that node can be started with rendezvous discovet Fix linter Update rendezvous client to one with instrumented stream Address feedback Fix test with updated topic limits Apply several suggestions Change log to debug for request errors because we continue execution Remove web3js after rebase Update rendezvous package
88 lines
1.9 KiB
Go
88 lines
1.9 KiB
Go
package swarm
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
transport "github.com/libp2p/go-libp2p-transport"
|
|
ma "github.com/multiformats/go-multiaddr"
|
|
)
|
|
|
|
// TransportForDialing retrieves the appropriate transport for dialing the given
|
|
// multiaddr.
|
|
func (s *Swarm) TransportForDialing(a ma.Multiaddr) transport.Transport {
|
|
protocols := a.Protocols()
|
|
if len(protocols) == 0 {
|
|
return nil
|
|
}
|
|
|
|
s.transports.RLock()
|
|
defer s.transports.RUnlock()
|
|
for _, p := range protocols {
|
|
transport, ok := s.transports.m[p.Code]
|
|
if !ok {
|
|
continue
|
|
}
|
|
if transport.Proxy() {
|
|
return transport
|
|
}
|
|
}
|
|
|
|
return s.transports.m[protocols[len(protocols)-1].Code]
|
|
}
|
|
|
|
// TransportForListening retrieves the appropriate transport for listening on
|
|
// the given multiaddr.
|
|
func (s *Swarm) TransportForListening(a ma.Multiaddr) transport.Transport {
|
|
protocols := a.Protocols()
|
|
if len(protocols) == 0 {
|
|
return nil
|
|
}
|
|
|
|
s.transports.RLock()
|
|
defer s.transports.RUnlock()
|
|
selected := s.transports.m[protocols[len(protocols)-1].Code]
|
|
for _, p := range protocols {
|
|
transport, ok := s.transports.m[p.Code]
|
|
if !ok {
|
|
continue
|
|
}
|
|
if transport.Proxy() {
|
|
selected = transport
|
|
}
|
|
}
|
|
return selected
|
|
}
|
|
|
|
// AddTransport adds a transport to this swarm.
|
|
//
|
|
// Satisfies the Network interface from go-libp2p-transport.
|
|
func (s *Swarm) AddTransport(t transport.Transport) error {
|
|
protocols := t.Protocols()
|
|
|
|
s.transports.Lock()
|
|
defer s.transports.Unlock()
|
|
var registered []string
|
|
for _, p := range protocols {
|
|
if _, ok := s.transports.m[p]; ok {
|
|
proto := ma.ProtocolWithCode(p)
|
|
name := proto.Name
|
|
if name == "" {
|
|
name = fmt.Sprintf("unknown (%d)", p)
|
|
}
|
|
registered = append(registered, name)
|
|
}
|
|
}
|
|
if len(registered) > 0 {
|
|
return fmt.Errorf(
|
|
"transports already registered for protocol(s): %s",
|
|
strings.Join(registered, ", "),
|
|
)
|
|
}
|
|
|
|
for _, p := range protocols {
|
|
s.transports.m[p] = t
|
|
}
|
|
return nil
|
|
}
|