Don't add useless peers to table
This commit is contained in:
parent
e4baf37bf8
commit
eef193e8bd
@ -361,24 +361,21 @@ impl Discovery {
|
|||||||
debug!(target: "discovery", "Expired ping");
|
debug!(target: "discovery", "Expired ping");
|
||||||
return Err(NetworkError::Expired);
|
return Err(NetworkError::Expired);
|
||||||
}
|
}
|
||||||
let mut entry = NodeEntry { id: node.clone(), endpoint: source.clone() };
|
let mut added_map = HashMap::new();
|
||||||
if !entry.endpoint.is_valid() {
|
let entry = NodeEntry { id: node.clone(), endpoint: source.clone() };
|
||||||
debug!(target: "discovery", "Got bad address: {:?}, using {:?} instead", entry, from);
|
if !entry.endpoint.is_valid() || !entry.endpoint.is_global() {
|
||||||
entry.endpoint.address = from.clone();
|
debug!(target: "discovery", "Got bad address: {:?}", entry);
|
||||||
}
|
}
|
||||||
if !entry.endpoint.is_global() {
|
else {
|
||||||
debug!(target: "discovery", "Got local address: {:?}, using {:?} instead", entry, from);
|
self.update_node(entry.clone());
|
||||||
entry.endpoint.address = from.clone();
|
added_map.insert(node.clone(), entry);
|
||||||
}
|
}
|
||||||
self.update_node(entry.clone());
|
|
||||||
let hash = rlp.as_raw().sha3();
|
let hash = rlp.as_raw().sha3();
|
||||||
let mut response = RlpStream::new_list(2);
|
let mut response = RlpStream::new_list(2);
|
||||||
dest.to_rlp_list(&mut response);
|
dest.to_rlp_list(&mut response);
|
||||||
response.append(&hash);
|
response.append(&hash);
|
||||||
self.send_packet(PACKET_PONG, &entry.endpoint.udp_address(), &response.drain());
|
self.send_packet(PACKET_PONG, from, &response.drain());
|
||||||
|
|
||||||
let mut added_map = HashMap::new();
|
|
||||||
added_map.insert(node.clone(), entry);
|
|
||||||
Ok(Some(TableUpdates { added: added_map, removed: HashSet::new() }))
|
Ok(Some(TableUpdates { added: added_map, removed: HashSet::new() }))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user