OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include <map> | 11 #include <map> |
12 #include <memory> | 12 #include <memory> |
13 #include <set> | 13 #include <set> |
14 #include <string> | 14 #include <string> |
15 | 15 |
16 #include "webrtc/base/asyncpacketsocket.h" | |
17 #include "webrtc/base/asyncresolverinterface.h" | |
18 #include "webrtc/base/bind.h" | |
19 #include "webrtc/base/checks.h" | |
20 #include "webrtc/base/constructormagic.h" | |
21 #include "webrtc/base/helpers.h" | |
22 #include "webrtc/base/logging.h" | |
23 #include "webrtc/base/timeutils.h" | |
24 #include "webrtc/base/thread.h" | |
25 #include "webrtc/p2p/base/packetsocketfactory.h" | 16 #include "webrtc/p2p/base/packetsocketfactory.h" |
26 #include "webrtc/p2p/base/stun.h" | 17 #include "webrtc/p2p/base/stun.h" |
27 #include "webrtc/p2p/stunprober/stunprober.h" | 18 #include "webrtc/p2p/stunprober/stunprober.h" |
| 19 #include "webrtc/rtc_base/asyncpacketsocket.h" |
| 20 #include "webrtc/rtc_base/asyncresolverinterface.h" |
| 21 #include "webrtc/rtc_base/bind.h" |
| 22 #include "webrtc/rtc_base/checks.h" |
| 23 #include "webrtc/rtc_base/constructormagic.h" |
| 24 #include "webrtc/rtc_base/helpers.h" |
| 25 #include "webrtc/rtc_base/logging.h" |
| 26 #include "webrtc/rtc_base/thread.h" |
| 27 #include "webrtc/rtc_base/timeutils.h" |
28 | 28 |
29 namespace stunprober { | 29 namespace stunprober { |
30 | 30 |
31 namespace { | 31 namespace { |
32 | 32 |
33 const int THREAD_WAKE_UP_INTERVAL_MS = 5; | 33 const int THREAD_WAKE_UP_INTERVAL_MS = 5; |
34 | 34 |
35 template <typename T> | 35 template <typename T> |
36 void IncrementCounterByAddress(std::map<T, int>* counter_per_ip, const T& ip) { | 36 void IncrementCounterByAddress(std::map<T, int>* counter_per_ip, const T& ip) { |
37 counter_per_ip->insert(std::make_pair(ip, 0)).first->second++; | 37 counter_per_ip->insert(std::make_pair(ip, 0)).first->second++; |
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 } | 581 } |
582 } | 582 } |
583 | 583 |
584 void StunProber::ReportOnFinished(StunProber::Status status) { | 584 void StunProber::ReportOnFinished(StunProber::Status status) { |
585 if (observer_) { | 585 if (observer_) { |
586 observer_->OnFinished(this, status); | 586 observer_->OnFinished(this, status); |
587 } | 587 } |
588 } | 588 } |
589 | 589 |
590 } // namespace stunprober | 590 } // namespace stunprober |
OLD | NEW |