OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2016 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/pc/quicdatachannel.h" | 11 #include "webrtc/pc/quicdatachannel.h" |
12 | 12 |
13 #include "webrtc/base/bind.h" | |
14 #include "webrtc/base/bytebuffer.h" | |
15 #include "webrtc/base/copyonwritebuffer.h" | |
16 #include "webrtc/base/logging.h" | |
17 #include "webrtc/p2p/quic/quictransportchannel.h" | 13 #include "webrtc/p2p/quic/quictransportchannel.h" |
18 #include "webrtc/p2p/quic/reliablequicstream.h" | 14 #include "webrtc/p2p/quic/reliablequicstream.h" |
| 15 #include "webrtc/rtc_base/bind.h" |
| 16 #include "webrtc/rtc_base/bytebuffer.h" |
| 17 #include "webrtc/rtc_base/copyonwritebuffer.h" |
| 18 #include "webrtc/rtc_base/logging.h" |
19 | 19 |
20 namespace webrtc { | 20 namespace webrtc { |
21 | 21 |
22 void WriteQuicDataChannelMessageHeader(int data_channel_id, | 22 void WriteQuicDataChannelMessageHeader(int data_channel_id, |
23 uint64_t message_id, | 23 uint64_t message_id, |
24 rtc::CopyOnWriteBuffer* header) { | 24 rtc::CopyOnWriteBuffer* header) { |
25 RTC_DCHECK(header); | 25 RTC_DCHECK(header); |
26 // 64-bit varints require at most 10 bytes (7*10 == 70), and 32-bit varints | 26 // 64-bit varints require at most 10 bytes (7*10 == 70), and 32-bit varints |
27 // require at most 5 bytes (7*5 == 35). | 27 // require at most 5 bytes (7*5 == 35). |
28 size_t max_length = 15; | 28 size_t max_length = 15; |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 | 387 |
388 size_t QuicDataChannel::GetNumWriteBlockedStreams() const { | 388 size_t QuicDataChannel::GetNumWriteBlockedStreams() const { |
389 return write_blocked_quic_streams_.size(); | 389 return write_blocked_quic_streams_.size(); |
390 } | 390 } |
391 | 391 |
392 size_t QuicDataChannel::GetNumIncomingStreams() const { | 392 size_t QuicDataChannel::GetNumIncomingStreams() const { |
393 return incoming_quic_messages_.size(); | 393 return incoming_quic_messages_.size(); |
394 } | 394 } |
395 | 395 |
396 } // namespace webrtc | 396 } // namespace webrtc |
OLD | NEW |