OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 <errno.h> | 11 #include <errno.h> |
12 #include <stdarg.h> | 12 #include <stdarg.h> |
13 #include <stdio.h> | 13 #include <stdio.h> |
14 | 14 |
15 #include <memory> | 15 #include <memory> |
16 #include <string> | 16 #include <string> |
17 #include <vector> | 17 #include <vector> |
18 | 18 |
19 #include "webrtc/base/bind.h" | |
20 #include "webrtc/base/copyonwritebuffer.h" | |
21 #include "webrtc/base/criticalsection.h" | |
22 #include "webrtc/base/gunit.h" | |
23 #include "webrtc/base/helpers.h" | |
24 #include "webrtc/base/ssladapter.h" | |
25 #include "webrtc/base/thread.h" | |
26 #include "webrtc/media/sctp/sctptransport.h" | 19 #include "webrtc/media/sctp/sctptransport.h" |
27 #include "webrtc/p2p/base/fakedtlstransport.h" | 20 #include "webrtc/p2p/base/fakedtlstransport.h" |
| 21 #include "webrtc/rtc_base/bind.h" |
| 22 #include "webrtc/rtc_base/copyonwritebuffer.h" |
| 23 #include "webrtc/rtc_base/criticalsection.h" |
| 24 #include "webrtc/rtc_base/gunit.h" |
| 25 #include "webrtc/rtc_base/helpers.h" |
| 26 #include "webrtc/rtc_base/ssladapter.h" |
| 27 #include "webrtc/rtc_base/thread.h" |
28 | 28 |
29 namespace { | 29 namespace { |
30 static const int kDefaultTimeout = 10000; // 10 seconds. | 30 static const int kDefaultTimeout = 10000; // 10 seconds. |
31 // Use ports other than the default 5000 for testing. | 31 // Use ports other than the default 5000 for testing. |
32 static const int kTransport1Port = 5001; | 32 static const int kTransport1Port = 5001; |
33 static const int kTransport2Port = 5002; | 33 static const int kTransport2Port = 5002; |
34 } | 34 } |
35 | 35 |
36 namespace cricket { | 36 namespace cricket { |
37 | 37 |
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
572 AddStream(1); | 572 AddStream(1); |
573 ASSERT_TRUE(SendData(transport1(), 1, "hi?", &result)); | 573 ASSERT_TRUE(SendData(transport1(), 1, "hi?", &result)); |
574 EXPECT_EQ(SDR_SUCCESS, result); | 574 EXPECT_EQ(SDR_SUCCESS, result); |
575 EXPECT_TRUE_WAIT(ReceivedData(receiver2(), 1, "hi?"), kDefaultTimeout); | 575 EXPECT_TRUE_WAIT(ReceivedData(receiver2(), 1, "hi?"), kDefaultTimeout); |
576 transport1()->ResetStream(1); | 576 transport1()->ResetStream(1); |
577 EXPECT_TRUE_WAIT(transport2_sig_receiver.StreamCloseCount(1) == 2, | 577 EXPECT_TRUE_WAIT(transport2_sig_receiver.StreamCloseCount(1) == 2, |
578 kDefaultTimeout); | 578 kDefaultTimeout); |
579 } | 579 } |
580 | 580 |
581 } // namespace cricket | 581 } // namespace cricket |
OLD | NEW |