remove numbers

This commit is contained in:
Raven Scott
2026-02-23 18:56:50 -05:00
parent 8d8dfebfc9
commit e5d50f7b0c
@@ -261,7 +261,7 @@ P2P Networking:
### Key Networking Differences
#### 1. Discovery vs Connection
#### Discovery vs Connection
In traditional networking, a **DNS server** tells your browser the IP address of a server. You connect directly to that IP.
@@ -280,7 +280,7 @@ swarm.on('connection', (conn, peerInfo) => {
});
```
#### 2. No Port Forwarding Required
#### No Port Forwarding Required
Traditional servers need **port forwarding** - you configure your router to forward incoming connections to your server.
@@ -290,7 +290,7 @@ P2P uses **NAT traversal** (hole punching):
- Both peers send packets to each other, "punching holes" in the NAT
- After hole punching, direct P2P communication is possible
#### 3. Always-On vs On-Demand
#### Always-On vs On-Demand
**Client-Server**: Server runs 24/7, clients connect as needed
**P2P**: Peers can come and go; the network adapts
@@ -308,7 +308,7 @@ P2P: [Peer A] ──────► [Peer B]
</pre>
</div>
#### 4. Trust Model
#### Trust Model
**Client-Server**: You trust the server to:
- Not read your data (depends on server honesty)