| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2012 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 "webrtc/p2p/base/turnserver.h" | 11 #include "webrtc/p2p/base/turnserver.h" |
| 12 | 12 |
| 13 #include <tuple> // for std::tie | 13 #include <tuple> // for std::tie |
| 14 | 14 |
| 15 #include "webrtc/base/bind.h" | |
| 16 #include "webrtc/base/bytebuffer.h" | |
| 17 #include "webrtc/base/checks.h" | |
| 18 #include "webrtc/base/helpers.h" | |
| 19 #include "webrtc/base/logging.h" | |
| 20 #include "webrtc/base/messagedigest.h" | |
| 21 #include "webrtc/base/ptr_util.h" | |
| 22 #include "webrtc/base/socketadapters.h" | |
| 23 #include "webrtc/base/stringencode.h" | |
| 24 #include "webrtc/base/thread.h" | |
| 25 #include "webrtc/p2p/base/asyncstuntcpsocket.h" | 15 #include "webrtc/p2p/base/asyncstuntcpsocket.h" |
| 26 #include "webrtc/p2p/base/common.h" | 16 #include "webrtc/p2p/base/common.h" |
| 27 #include "webrtc/p2p/base/packetsocketfactory.h" | 17 #include "webrtc/p2p/base/packetsocketfactory.h" |
| 28 #include "webrtc/p2p/base/stun.h" | 18 #include "webrtc/p2p/base/stun.h" |
| 19 #include "webrtc/rtc_base/bind.h" |
| 20 #include "webrtc/rtc_base/bytebuffer.h" |
| 21 #include "webrtc/rtc_base/checks.h" |
| 22 #include "webrtc/rtc_base/helpers.h" |
| 23 #include "webrtc/rtc_base/logging.h" |
| 24 #include "webrtc/rtc_base/messagedigest.h" |
| 25 #include "webrtc/rtc_base/ptr_util.h" |
| 26 #include "webrtc/rtc_base/socketadapters.h" |
| 27 #include "webrtc/rtc_base/stringencode.h" |
| 28 #include "webrtc/rtc_base/thread.h" |
| 29 | 29 |
| 30 namespace cricket { | 30 namespace cricket { |
| 31 | 31 |
| 32 // TODO(juberti): Move this all to a future turnmessage.h | 32 // TODO(juberti): Move this all to a future turnmessage.h |
| 33 //static const int IPPROTO_UDP = 17; | 33 //static const int IPPROTO_UDP = 17; |
| 34 static const int kNonceTimeout = 60 * 60 * 1000; // 60 minutes | 34 static const int kNonceTimeout = 60 * 60 * 1000; // 60 minutes |
| 35 static const int kDefaultAllocationTimeout = 10 * 60 * 1000; // 10 minutes | 35 static const int kDefaultAllocationTimeout = 10 * 60 * 1000; // 10 minutes |
| 36 static const int kPermissionTimeout = 5 * 60 * 1000; // 5 minutes | 36 static const int kPermissionTimeout = 5 * 60 * 1000; // 5 minutes |
| 37 static const int kChannelTimeout = 10 * 60 * 1000; // 10 minutes | 37 static const int kChannelTimeout = 10 * 60 * 1000; // 10 minutes |
| 38 | 38 |
| (...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 963 MSG_ALLOCATION_TIMEOUT); | 963 MSG_ALLOCATION_TIMEOUT); |
| 964 } | 964 } |
| 965 | 965 |
| 966 void TurnServerAllocation::Channel::OnMessage(rtc::Message* msg) { | 966 void TurnServerAllocation::Channel::OnMessage(rtc::Message* msg) { |
| 967 RTC_DCHECK(msg->message_id == MSG_ALLOCATION_TIMEOUT); | 967 RTC_DCHECK(msg->message_id == MSG_ALLOCATION_TIMEOUT); |
| 968 SignalDestroyed(this); | 968 SignalDestroyed(this); |
| 969 delete this; | 969 delete this; |
| 970 } | 970 } |
| 971 | 971 |
| 972 } // namespace cricket | 972 } // namespace cricket |
| OLD | NEW |