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 |
11 // This file contain SDP strings used for testing. | 11 // This file contain SDP strings used for testing. |
12 | 12 |
13 #ifndef WEBRTC_API_TEST_TESTSDPSTRINGS_H_ | 13 #ifndef WEBRTC_PC_TEST_TESTSDPSTRINGS_H_ |
14 #define WEBRTC_API_TEST_TESTSDPSTRINGS_H_ | 14 #define WEBRTC_PC_TEST_TESTSDPSTRINGS_H_ |
15 | 15 |
16 namespace webrtc { | 16 namespace webrtc { |
17 | 17 |
18 // SDP offer string from a Nightly FireFox build. | 18 // SDP offer string from a Nightly FireFox build. |
19 static const char kFireFoxSdpOffer[] = | 19 static const char kFireFoxSdpOffer[] = |
20 "v=0\r\n" | 20 "v=0\r\n" |
21 "o=Mozilla-SIPUA 23551 0 IN IP4 0.0.0.0\r\n" | 21 "o=Mozilla-SIPUA 23551 0 IN IP4 0.0.0.0\r\n" |
22 "s=SIP Call\r\n" | 22 "s=SIP Call\r\n" |
23 "t=0 0\r\n" | 23 "t=0 0\r\n" |
24 "a=ice-ufrag:e5785931\r\n" | 24 "a=ice-ufrag:e5785931\r\n" |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 "a=ice-ufrag:AI2sRT3r\r\n" | 122 "a=ice-ufrag:AI2sRT3r\r\n" |
123 "a=ice-pwd:lByS9z2RSQlSE9XurlvjYmEm\r\n" | 123 "a=ice-pwd:lByS9z2RSQlSE9XurlvjYmEm\r\n" |
124 "a=ssrc:4227871655 cname:TsmD02HRfhkJBm4m\r\n" | 124 "a=ssrc:4227871655 cname:TsmD02HRfhkJBm4m\r\n" |
125 "a=ssrc:4227871655 msid:7nU0TApbB-n4dfPlCplWT9QTEsbBDS1IlpW3 a0\r\n" | 125 "a=ssrc:4227871655 msid:7nU0TApbB-n4dfPlCplWT9QTEsbBDS1IlpW3 a0\r\n" |
126 "a=ssrc:4227871655 mslabel:7nU0TApbB-n4dfPlCplWT9QTEsbBDS1IlpW3\r\n" | 126 "a=ssrc:4227871655 mslabel:7nU0TApbB-n4dfPlCplWT9QTEsbBDS1IlpW3\r\n" |
127 "a=ssrc:4227871655 label:7nU0TApbB-n4dfPlCplWT9QTEsbBDS1IlpW3a0\r\n" | 127 "a=ssrc:4227871655 label:7nU0TApbB-n4dfPlCplWT9QTEsbBDS1IlpW3a0\r\n" |
128 "a=mid:audio\r\n"; | 128 "a=mid:audio\r\n"; |
129 | 129 |
130 } // namespace webrtc | 130 } // namespace webrtc |
131 | 131 |
132 #endif // WEBRTC_API_TEST_TESTSDPSTRINGS_H_ | 132 #endif // WEBRTC_PC_TEST_TESTSDPSTRINGS_H_ |
OLD | NEW |