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
26 lines
642 B
Go
26 lines
642 B
Go
package connsec
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
|
|
inet "github.com/libp2p/go-libp2p-net"
|
|
peer "github.com/libp2p/go-libp2p-peer"
|
|
)
|
|
|
|
// A Transport turns inbound and outbound unauthenticated,
|
|
// plain-text connections into authenticated, encrypted connections.
|
|
type Transport interface {
|
|
// SecureInbound secures an inbound connection.
|
|
SecureInbound(ctx context.Context, insecure net.Conn) (Conn, error)
|
|
|
|
// SecureOutbound secures an outbound connection.
|
|
SecureOutbound(ctx context.Context, insecure net.Conn, p peer.ID) (Conn, error)
|
|
}
|
|
|
|
// Conn is an authenticated, encrypted connection.
|
|
type Conn interface {
|
|
net.Conn
|
|
inet.ConnSecurity
|
|
}
|