aboutsummaryrefslogtreecommitdiff
path: root/src/stream
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2011-12-09 15:55:00 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2011-12-09 15:55:00 +0000
commit04ae1bc73842a2aad9ca73d9abb6875a58cbdd40 (patch)
tree54ccd89279fba2451162702fae3bb465406157bc /src/stream
parent32538d64d62d3be3e46b9cbc128d966e10f4141e (diff)
downloadgnunet-04ae1bc73842a2aad9ca73d9abb6875a58cbdd40.tar.gz
gnunet-04ae1bc73842a2aad9ca73d9abb6875a58cbdd40.zip
added API definitions for stream library
Diffstat (limited to 'src/stream')
-rw-r--r--src/stream/README11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/stream/README b/src/stream/README
new file mode 100644
index 000000000..9b550b09b
--- /dev/null
+++ b/src/stream/README
@@ -0,0 +1,11 @@
1The aim of the stream library is to provide stream connections between peers in
2GNUnet. This is a convenience library which hides the complexity of dividing
3data stream into packets, transmitting them and retransmitting them in case of
4errors.
5
6This library's API are similar to unix PIPE API. The user is expected to open a
7stream to a listening target peer. Once the stream is established, the user can
8use it as a pipe. Any data written into the stream will be readable by the
9target peer.
10
11This library uses mesh API for establishing streams between peers. \ No newline at end of file