diff options
author | Richard Linden <none@none> | 2011-04-07 16:20:26 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2011-04-07 16:20:26 -0700 |
commit | bdef5609828a06b50ceadf61f56ac2d31e9b7f43 (patch) | |
tree | 850439f127faceb18ffd54ea67b3c3bcd2c5bf3c /indra/newview/llcommandhandler.cpp | |
parent | 24b0b66252610660fecc942b867ffa41213b6a3f (diff) |
SOCIAL-688 FIX Multiple SLurls error given in minimal skin when clicking links in web profile
reverted throttling of untrusted slapps to 1 every 5 seconds
don't treat slapps originating from external browsers as clicks and thus bypassing throttling
Diffstat (limited to 'indra/newview/llcommandhandler.cpp')
-rw-r--r-- | indra/newview/llcommandhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llcommandhandler.cpp b/indra/newview/llcommandhandler.cpp index bb1fb41fae..19dba3f917 100644 --- a/indra/newview/llcommandhandler.cpp +++ b/indra/newview/llcommandhandler.cpp @@ -35,7 +35,7 @@ // system includes #include <boost/tokenizer.hpp> -#define THROTTLE_PERIOD 20 // required secs between throttled commands +#define THROTTLE_PERIOD 5 // required seconds between throttled commands static LLCommandDispatcherListener sCommandDispatcherListener; @@ -134,7 +134,7 @@ bool LLCommandHandlerRegistry::dispatch(const std::string& cmd, if (cur_time < last_throttle_time + THROTTLE_PERIOD) { // block request from external browser if it happened - // within THROTTLE_PERIOD secs of the last command + // within THROTTLE_PERIOD seconds of the last command LL_WARNS_ONCE("SLURL") << "Throttled SLURL command from untrusted browser" << LL_ENDL; if (! slurl_throttled) { |