commit | 84db26390fcdf70725607e9f80d844275ae75684 | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jeff@thefirst.org> | Sun Dec 09 22:31:39 2012 -0800 |
committer | Jeff Thompson <jeff@thefirst.org> | Sun Dec 09 22:32:41 2012 -0800 |
tree | 792707352e15d40dcc0c850fcaf3de73bf9a5c52 | |
parent | 64db7c0f4785c2d92153d71a0a49481a91bebf28 [diff] [blame] |
The Interest object interestLifetime is seconds, not milliseconds.
diff --git a/js/NDN.js b/js/NDN.js index 479ed30..f0267c5 100644 --- a/js/NDN.js +++ b/js/NDN.js
@@ -68,7 +68,7 @@ interest.interestLifetime = template.interestLifetime; } else - interest.interestLifetime = 4200; // default interest timeout value + interest.interestLifetime = 4.0; // default interest timeout value in seconds. this.transport.expressInterest(this, interest, closure); };