Merge refactor-sans-io: rename proto/discovery to proto/lookup into the next line

Forward-merge the mesh discovery module rename (directory, exported types, and
internal lookup-stem terminology) onto the next wire-format line. next's
divergent lookup wire and core content is preserved under the new proto/lookup
path, with the same terminology sweep applied to its next-only lines.
This commit is contained in:
Johnathan Corgan
2026-07-08 21:54:24 +00:00
15 changed files with 297 additions and 277 deletions
+2 -2
View File
@@ -5,7 +5,7 @@
//! response routing.
use super::*;
use crate::proto::discovery::{LookupRequest, LookupResponse, RecentRequest};
use crate::proto::lookup::{LookupRequest, LookupResponse, RecentRequest};
use crate::proto::stp::TreeCoordinate;
use spanning_tree::{
cleanup_nodes, generate_random_edges, lock_large_network_test, process_available_packets,
@@ -1162,7 +1162,7 @@ async fn test_open_discovery_sweep_queues_eligible_skips_filtered() {
async fn test_check_pending_lookups_default_sequence_unreachable() {
use crate::peer::ActivePeer;
use crate::proto::bloom::BloomFilter;
use crate::proto::discovery::PendingLookup;
use crate::proto::lookup::PendingLookup;
use crate::transport::LinkId;
use std::sync::mpsc;