OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2004 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 |
(...skipping 25 matching lines...) Expand all Loading... |
36 PORTALLOCATOR_ENABLE_IPV6 = 0x40, | 36 PORTALLOCATOR_ENABLE_IPV6 = 0x40, |
37 // TODO(pthatcher): Remove this once it's no longer used in: | 37 // TODO(pthatcher): Remove this once it's no longer used in: |
38 // remoting/client/plugin/pepper_port_allocator.cc | 38 // remoting/client/plugin/pepper_port_allocator.cc |
39 // remoting/protocol/chromium_port_allocator.cc | 39 // remoting/protocol/chromium_port_allocator.cc |
40 // remoting/test/fake_port_allocator.cc | 40 // remoting/test/fake_port_allocator.cc |
41 // It's a no-op and is no longer needed. | 41 // It's a no-op and is no longer needed. |
42 PORTALLOCATOR_ENABLE_SHARED_UFRAG = 0x80, | 42 PORTALLOCATOR_ENABLE_SHARED_UFRAG = 0x80, |
43 PORTALLOCATOR_ENABLE_SHARED_SOCKET = 0x100, | 43 PORTALLOCATOR_ENABLE_SHARED_SOCKET = 0x100, |
44 PORTALLOCATOR_ENABLE_STUN_RETRANSMIT_ATTRIBUTE = 0x200, | 44 PORTALLOCATOR_ENABLE_STUN_RETRANSMIT_ATTRIBUTE = 0x200, |
45 PORTALLOCATOR_DISABLE_ADAPTER_ENUMERATION = 0x400, | 45 PORTALLOCATOR_DISABLE_ADAPTER_ENUMERATION = 0x400, |
| 46 // When specified, a loopback candidate will be generated if |
| 47 // PORTALLOCATOR_DISABLE_ADAPTER_ENUMERATION is specified. |
| 48 PORTALLOCATOR_ENABLE_LOCALHOST_CANDIDATE = 0x800, |
46 }; | 49 }; |
47 | 50 |
48 const uint32 kDefaultPortAllocatorFlags = 0; | 51 const uint32 kDefaultPortAllocatorFlags = 0; |
49 | 52 |
50 const uint32 kDefaultStepDelay = 1000; // 1 sec step delay. | 53 const uint32 kDefaultStepDelay = 1000; // 1 sec step delay. |
51 // As per RFC 5245 Appendix B.1, STUN transactions need to be paced at certain | 54 // As per RFC 5245 Appendix B.1, STUN transactions need to be paced at certain |
52 // internal. Less than 20ms is not acceptable. We choose 50ms as our default. | 55 // internal. Less than 20ms is not acceptable. We choose 50ms as our default. |
53 const uint32 kMinimumStepDelay = 50; | 56 const uint32 kMinimumStepDelay = 50; |
54 | 57 |
55 // CF = CANDIDATE FILTER | 58 // CF = CANDIDATE FILTER |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 int max_port_; | 188 int max_port_; |
186 uint32 step_delay_; | 189 uint32 step_delay_; |
187 bool allow_tcp_listen_; | 190 bool allow_tcp_listen_; |
188 uint32 candidate_filter_; | 191 uint32 candidate_filter_; |
189 std::string origin_; | 192 std::string origin_; |
190 }; | 193 }; |
191 | 194 |
192 } // namespace cricket | 195 } // namespace cricket |
193 | 196 |
194 #endif // WEBRTC_P2P_BASE_PORTALLOCATOR_H_ | 197 #endif // WEBRTC_P2P_BASE_PORTALLOCATOR_H_ |
OLD | NEW |