next one
[oweals/gnunet.git] / src / stream / README
1 Stream library provides stream connections between peers in GNUnet. This is a
2 convenience library which hides the complexity of dividing data stream into
3 packets, transmitting them and retransmitting them in case of communication
4 errors.
5
6 This library's API are similar to unix PIPE API. The user is expected to open a
7 stream to a listening target peer. Once the stream is established, the user can
8 use it as a pipe. Any data written into the stream at one peer will be readable
9 by the other peer and vice versa.
10
11 This library uses mesh API for establishing tunnels between peers.