notif.go 1.58 KB
Newer Older
1 2 3
package dht

import (
4 5
	inet "github.com/libp2p/go-libp2p-net"
	ma "github.com/multiformats/go-multiaddr"
Jeromy's avatar
Jeromy committed
6
	mstream "github.com/multiformats/go-multistream"
7 8 9 10 11 12 13 14 15 16 17 18
)

// netNotifiee defines methods to be used with the IpfsDHT
type netNotifiee IpfsDHT

func (nn *netNotifiee) DHT() *IpfsDHT {
	return (*IpfsDHT)(nn)
}

func (nn *netNotifiee) Connected(n inet.Network, v inet.Conn) {
	dht := nn.DHT()
	select {
19
	case <-dht.Process().Closing():
20
		return
21
	default:
22
	}
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39

	// Note: We *could* just check the peerstore to see if the remote side supports the dht
	// protocol, but its not clear that that information will make it into the peerstore
	// by the time this notification is sent. So just to be very careful, we brute force this
	// and open a new stream
	s, err := dht.host.NewStream(dht.Context(), v.RemotePeer(), ProtocolDHT, ProtocolDHTOld)
	switch err {
	case nil:
		s.Close()
		// connected fine? full dht node
		dht.Update(dht.Context(), v.RemotePeer())
	case mstream.ErrNotSupported:
		// Client mode only, don't bother adding them to our routing table
	default:
		// real error? thats odd
		log.Errorf("checking dht client type: %#v", err)
	}
40 41 42 43 44
}

func (nn *netNotifiee) Disconnected(n inet.Network, v inet.Conn) {
	dht := nn.DHT()
	select {
45
	case <-dht.Process().Closing():
46
		return
47
	default:
48 49 50 51 52 53
	}
	dht.routingTable.Remove(v.RemotePeer())
}

func (nn *netNotifiee) OpenedStream(n inet.Network, v inet.Stream) {}
func (nn *netNotifiee) ClosedStream(n inet.Network, v inet.Stream) {}
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
54 55
func (nn *netNotifiee) Listen(n inet.Network, a ma.Multiaddr)      {}
func (nn *netNotifiee) ListenClose(n inet.Network, a ma.Multiaddr) {}