URI:
       tUpdate the README file with some example. - tordam - A library for peer discovery inside the Tor network
  HTML git clone https://git.parazyd.org/tordam
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit ce414baa5cdc60fd5706f9c3de2b983c273eeaf4
   DIR parent 6cbfbc64a43432f595c750352c66065eb2de4175
  HTML Author: parazyd <parazyd@dyne.org>
       Date:   Wed,  6 Mar 2019 17:32:47 +0100
       
       Update the README file with some example.
       
       Diffstat:
         M README.md                           |      24 +++++++++++++++++++++++-
       
       1 file changed, 23 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/README.md b/README.md
       t@@ -39,7 +39,7 @@ website itself. `stem` needs to be at least version `1.7.0`.
        To install everything else, go to the directory where go has downloaded
        tor-dam and run `make install` as root.
        
       -External software dependendies include `redis` and `tor`. You can
       +External software dependencies include `redis` and `tor`. You can
        retrieve them using your package manager. Tor has to be at least version
        `0.3`, to support V3 hidden services.
        
       t@@ -50,3 +50,25 @@ to create hidden services and retrieve hidden service descriptors.
        Redis is our storage backend where information about nodes is held.
        
        Working configurations are provided in the `contrib` directory.
       +
       +
       +### Operation example(s)
       +
       +By default, ports 13010:13010,13011:13011,5000:5000 are mapped by
       +tor-dam. (see: tor-dam/pkg/damlib/config.go:48)
       +
       +To serve a basic echo server behind this, issue the following on the
       +recipient side:
       +
       +```
       +nc -l 5000
       +```
       +
       +and the following on the sender's side:
       +
       +```
       +echo 'HELLO' | torsocks nc <address.onion> 5000
       +```
       +
       +You can find the onion address either in redis, or in the `.dam`
       +directory.