| 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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 rtc::Thread* const signaling_thread_; | 448 rtc::Thread* const signaling_thread_; |
| 449 rtc::Thread* const worker_thread_; | 449 rtc::Thread* const worker_thread_; |
| 450 PortAllocator* const port_allocator_; | 450 PortAllocator* const port_allocator_; |
| 451 const std::string sid_; | 451 const std::string sid_; |
| 452 const std::string content_type_; | 452 const std::string content_type_; |
| 453 bool initiator_; | 453 bool initiator_; |
| 454 rtc::scoped_refptr<rtc::RTCCertificate> certificate_; | 454 rtc::scoped_refptr<rtc::RTCCertificate> certificate_; |
| 455 rtc::SSLProtocolVersion ssl_max_version_; | 455 rtc::SSLProtocolVersion ssl_max_version_; |
| 456 rtc::scoped_ptr<const SessionDescription> local_description_; | 456 rtc::scoped_ptr<const SessionDescription> local_description_; |
| 457 rtc::scoped_ptr<SessionDescription> remote_description_; | 457 rtc::scoped_ptr<SessionDescription> remote_description_; |
| 458 uint64 ice_tiebreaker_; | 458 uint64_t ice_tiebreaker_; |
| 459 // This flag will be set to true after the first role switch. This flag | 459 // This flag will be set to true after the first role switch. This flag |
| 460 // will enable us to stop any role switch during the call. | 460 // will enable us to stop any role switch during the call. |
| 461 bool role_switch_; | 461 bool role_switch_; |
| 462 TransportMap transports_; | 462 TransportMap transports_; |
| 463 | 463 |
| 464 // Timeout value in milliseconds for which no ICE connection receives | 464 // Timeout value in milliseconds for which no ICE connection receives |
| 465 // any packets. | 465 // any packets. |
| 466 int ice_receiving_timeout_; | 466 int ice_receiving_timeout_; |
| 467 }; | 467 }; |
| 468 | 468 |
| 469 } // namespace cricket | 469 } // namespace cricket |
| 470 | 470 |
| 471 #endif // WEBRTC_P2P_BASE_SESSION_H_ | 471 #endif // WEBRTC_P2P_BASE_SESSION_H_ |
| OLD | NEW |