interface.go 2.9 KB
Newer Older
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
1
2
3
4
5
6
7
package conn

import (
	"io"
	"net"
	"time"

8
	key "github.com/ipfs/go-ipfs/blocks/key"
9
	ic "github.com/ipfs/go-ipfs/p2p/crypto"
10
	filter "github.com/ipfs/go-ipfs/p2p/net/filter"
11
	peer "github.com/ipfs/go-ipfs/p2p/peer"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
12

13
14
15
	msgio "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-msgio"
	ma "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
	manet "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr-net"
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
16
17
18
)

// Map maps Keys (Peer.IDs) to Connections.
19
type Map map[key.Key]Conn
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
20
21

type PeerConn interface {
22
23
	io.Closer

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
	// LocalPeer (this side) ID, PrivateKey, and Address
	LocalPeer() peer.ID
	LocalPrivateKey() ic.PrivKey
	LocalMultiaddr() ma.Multiaddr

	// RemotePeer ID, PublicKey, and Address
	RemotePeer() peer.ID
	RemotePublicKey() ic.PubKey
	RemoteMultiaddr() ma.Multiaddr
}

// Conn is a generic message-based Peer-to-Peer connection.
type Conn interface {
	PeerConn

	// ID is an identifier unique to this connection.
	ID() string

	// can't just say "net.Conn" cause we have duplicate methods.
	LocalAddr() net.Addr
	RemoteAddr() net.Addr
	SetDeadline(t time.Time) error
	SetReadDeadline(t time.Time) error
	SetWriteDeadline(t time.Time) error

	msgio.Reader
	msgio.Writer
}

// Dialer is an object that can open connections. We could have a "convenience"
// Dial function as before, but it would have many arguments, as dialing is
// no longer simple (need a peerstore, a local peer, a context, a network, etc)
type Dialer struct {

58
59
60
	// Dialer is an optional manet.Dialer to use.
	Dialer manet.Dialer

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
61
62
63
64
65
66
67
68
69
	// LocalPeer is the identity of the local Peer.
	LocalPeer peer.ID

	// LocalAddrs is a set of local addresses to use.
	LocalAddrs []ma.Multiaddr

	// PrivateKey used to initialize a secure connection.
	// Warning: if PrivateKey is nil, connection will not be secured.
	PrivateKey ic.PrivKey
Jeromy's avatar
Jeromy committed
70
71
72

	// Wrapper to wrap the raw connection (optional)
	Wrapper func(manet.Conn) manet.Conn
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
}

// Listener is an object that can accept connections. It matches net.Listener
type Listener interface {

	// Accept waits for and returns the next connection to the listener.
	Accept() (net.Conn, error)

	// Addr is the local address
	Addr() net.Addr

	// Multiaddr is the local multiaddr address
	Multiaddr() ma.Multiaddr

	// LocalPeer is the identity of the local Peer.
	LocalPeer() peer.ID

90
91
	SetAddrFilters(*filter.Filters)

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
92
93
94
95
	// Close closes the listener.
	// Any blocked Accept operations will be unblocked and return errors.
	Close() error
}
96
97
98
99
100
101
102
103

// EncryptConnections is a global parameter because it should either be
// enabled or _completely disabled_. I.e. a node should only be able to talk
// to proper (encrypted) networks if it is encrypting all its transports.
// Running a node with disabled transport encryption is useful to debug the
// protocols, achieve implementation interop, or for private networks which
// -- for whatever reason -- _must_ run unencrypted.
var EncryptConnections = true