Added package files for router.

This commit is contained in:
mathiasdm
2010-10-20 16:01:18 +00:00
parent e8abe14395
commit e6c45ae5f8
6 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<html>
<body>
<p>
The I2P router application handles the I2P network communication.
</p>
<p>
It encompasses sending and receiving messages, building up tunnels, encrypting and decrypting (on multiple levels) where applicable, and so on.
</p>
</body>
</html>

View File

@@ -0,0 +1,10 @@
<html>
<body>
<p>
The peer manager logs information about the history and quality of network peers.
</p>
<p>
Peer capacity, speed and other parameters are calculated to determine in what cases we should use each peer.
</p>
</body>
</html>

View File

@@ -0,0 +1,10 @@
<html>
<body>
<p>
The I2P startup package loads the configuration when I2P is started.
</p>
<p>
The startup consists of a number of different jobs, like loading data from files for the network database, creating new router information (keypairs), and so on.
</p>
</body>
</html>

View File

@@ -0,0 +1,7 @@
<html>
<body>
<p>
The NTCP transport allows passing I2P messages on top of TCP. The N in NTCP stands for 'New', as the NTCP transport replaces an older TCP transport which had issues concerning congestion collapse.
</p>
</body>
</html>

View File

@@ -0,0 +1,7 @@
<html>
<body>
<p>
The transport system allows the usage of communication layers that are below I2P in the stack, on which I2P messages are sent.
</p>
</body>
</html>

View File

@@ -0,0 +1,7 @@
<html>
<body>
<p>
The UDP transport (also known as 'SSU transport') allows passing I2P messages on top of UDP.
</p>
</body>
</html>