From 69b2adab1ae8972b3ef2aefba82069ee6807f750 Mon Sep 17 00:00:00 2001 From: Dan Cline <6798349+Rjected@users.noreply.github.com> Date: Wed, 30 Nov 2022 07:06:22 -0500 Subject: [PATCH] docs(repo): add p2p architecture details in layout (#295) * remove net/p2p docs as it only contains anchor currently, which is not integrated --- docs/repo/layout.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/repo/layout.md b/docs/repo/layout.md index af2f3fd1a..c9ba6500c 100644 --- a/docs/repo/layout.md +++ b/docs/repo/layout.md @@ -32,8 +32,8 @@ These crates are related to networking (p2p and RPC), as well as networking prot #### P2P -- [`net/network`](../../crates/net/network): The main P2P networking crate. -- [`net/p2p`](../../crates/net/p2p): Implements the Ethereum P2P protocol. +- [`net/network`](../../crates/net/network): The main P2P networking crate, handling message egress, message ingress, peer management, and session management. +- [`net/eth-wire`](../../crates/net/eth-wire): Implements the `eth` wire protocol and the RLPx networking stack. - [`net/discv4`](../../crates/net/discv4): An implementation of the [discv4][discv4] protocol - [`net/ipc`](../../crates/net/ipc): IPC server and client implementation for [`jsonrpsee`][jsonrpsee].