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 |
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
547 // Gather the usage of IPv4/IPv6 as best connection. | 547 // Gather the usage of IPv4/IPv6 as best connection. |
548 void ReportBestConnectionState(const cricket::TransportStats& stats); | 548 void ReportBestConnectionState(const cricket::TransportStats& stats); |
549 | 549 |
550 void ReportNegotiatedCiphers(const cricket::TransportStats& stats); | 550 void ReportNegotiatedCiphers(const cricket::TransportStats& stats); |
551 | 551 |
552 void OnSentPacket_w(const rtc::SentPacket& sent_packet); | 552 void OnSentPacket_w(const rtc::SentPacket& sent_packet); |
553 | 553 |
554 const std::string GetTransportName(const std::string& content_name); | 554 const std::string GetTransportName(const std::string& content_name); |
555 | 555 |
556 void DestroyTransport(const std::string& transport_name, int component); | 556 void DestroyTransport(const std::string& transport_name, int component); |
557 void DestroyRtcpTransport_n(const std::string& transport_name); | 557 void OnDestroyRtcpTransport_n(const std::string& transport_name); |
558 void DestroyVideoChannel(); | 558 void DestroyVideoChannel(); |
559 void DestroyVoiceChannel(); | 559 void DestroyVoiceChannel(); |
560 void DestroyDataChannel(); | 560 void DestroyDataChannel(); |
561 | 561 |
562 rtc::Thread* const network_thread_; | 562 rtc::Thread* const network_thread_; |
563 rtc::Thread* const worker_thread_; | 563 rtc::Thread* const worker_thread_; |
564 rtc::Thread* const signaling_thread_; | 564 rtc::Thread* const signaling_thread_; |
565 | 565 |
566 State state_ = STATE_INIT; | 566 State state_ = STATE_INIT; |
567 Error error_ = ERROR_NONE; | 567 Error error_ = ERROR_NONE; |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
646 | 646 |
647 #ifdef HAVE_QUIC | 647 #ifdef HAVE_QUIC |
648 std::unique_ptr<QuicDataTransport> quic_data_transport_; | 648 std::unique_ptr<QuicDataTransport> quic_data_transport_; |
649 #endif // HAVE_QUIC | 649 #endif // HAVE_QUIC |
650 | 650 |
651 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSession); | 651 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSession); |
652 }; | 652 }; |
653 } // namespace webrtc | 653 } // namespace webrtc |
654 | 654 |
655 #endif // WEBRTC_API_WEBRTCSESSION_H_ | 655 #endif // WEBRTC_API_WEBRTCSESSION_H_ |
OLD | NEW |