blob: 50a4dd0ac83aadfcd34c23bed45362b8be1e6564 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/renderer_host/p2p/socket_host_throttler.h"
#include "third_party/libjingle/source/talk/base/ratelimiter.h"
#include "third_party/libjingle/source/talk/base/timing.h"
namespace content {
namespace {
const int kMaxIceMessageBandwidth = 256 * 1024;
} // namespace
P2PMessageThrottler::P2PMessageThrottler()
: timing_(new talk_base::Timing()),
rate_limiter_(new talk_base::RateLimiter(kMaxIceMessageBandwidth, 1.0)) {
}
P2PMessageThrottler::~P2PMessageThrottler() {
}
void P2PMessageThrottler::SetTiming(scoped_ptr<talk_base::Timing> timing) {
timing_ = timing.Pass();
}
void P2PMessageThrottler::SetSendIceBandwidth(int bandwidth_kbps) {
rate_limiter_.reset(new talk_base::RateLimiter(bandwidth_kbps, 1.0));
}
bool P2PMessageThrottler::DropNextPacket(size_t packet_len) {
double now = timing_->TimerNow();
if (!rate_limiter_->CanUse(packet_len, now)) {
// Exceeding the send rate, this packet should be dropped.
return true;
}
rate_limiter_->Use(packet_len, now);
return false;
}
} // namespace content
|