From 4c3da0f2e1063ccb32933faff4601d5f5e0f987c Mon Sep 17 00:00:00 2001 From: Firescar96 Date: Fri, 24 Jun 2016 16:27:55 -0400 Subject: node, p2p, internal: Add ability to remove peers via admin interface --- p2p/dial.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'p2p/dial.go') diff --git a/p2p/dial.go b/p2p/dial.go index c0e703d7d..691b8539e 100644 --- a/p2p/dial.go +++ b/p2p/dial.go @@ -121,6 +121,11 @@ func (s *dialstate) addStatic(n *discover.Node) { s.static[n.ID] = &dialTask{flags: staticDialedConn, dest: n} } +func (s *dialstate) removeStatic(n *discover.Node) { + // This removes a task so future attempts to connect will not be made. + delete(s.static, n.ID) +} + func (s *dialstate) newTasks(nRunning int, peers map[discover.NodeID]*Peer, now time.Time) []task { var newtasks []task isDialing := func(id discover.NodeID) bool { -- cgit v1.2.3