-check if /dev/net/tun exists and skip test otherwise
[oweals/gnunet.git] / src / stream / README
1 The aim of the stream library is to provide stream connections between peers in
2 GNUnet. This is a convenience library which hides the complexity of dividing
3 data stream into packets, transmitting them and retransmitting them in case of
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 will be readable by the
9 target peer.
10
11 This library uses mesh API for establishing streams between peers.