From b081e4a89d730e662ccda72a15b5e15d4acbbbde Mon Sep 17 00:00:00 2001 From: csoler Date: Sat, 31 Jan 2015 18:04:23 +0000 Subject: [PATCH] added missing comment git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7894 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- libretroshare/src/retroshare/rsturtle.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libretroshare/src/retroshare/rsturtle.h b/libretroshare/src/retroshare/rsturtle.h index 11fb98df0..6fb1b045c 100644 --- a/libretroshare/src/retroshare/rsturtle.h +++ b/libretroshare/src/retroshare/rsturtle.h @@ -108,7 +108,10 @@ class RsTurtle // an exception if an error occurs during the initialization process. The // turtle router itself does not initiate downloads, it only maintains // tunnels for the given hash. The download should be driven by the file - // transfer module by calling ftServer::FileRequest(). + // transfer module by calling ftServer::FileRequest(). + // Aggressive mode causes the turtle router to regularly re-ask tunnels in addition to the ones already + // available without replacing them. In non aggressive mode, we wait for all tunnels to die before asking + // for new tunnels. // virtual void monitorTunnels(const RsFileHash& file_hash,RsTurtleClientService *client_service,bool use_aggressive_mode) = 0 ;