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 20 matching lines...) Expand all Loading... | |
31 bool type_supported = false; | 31 bool type_supported = false; |
32 for (size_t i = 0; i < arraysize(kSupportedTypes); ++i) { | 32 for (size_t i = 0; i < arraysize(kSupportedTypes); ++i) { |
33 if (kSupportedTypes[i] == type) { | 33 if (kSupportedTypes[i] == type) { |
34 type_supported = true; | 34 type_supported = true; |
35 break; | 35 break; |
36 } | 36 } |
37 } | 37 } |
38 return type_supported; | 38 return type_supported; |
39 } | 39 } |
40 | 40 |
41 // RFC 5245 | |
42 // It is RECOMMENDED that default candidates be chosen based on the | |
43 // likelihood of those candidates to work with the peer that is being | |
44 // contacted. It is RECOMMENDED that relayed > reflexive > host. | |
45 static const int kPreferenceUnknown = 0; | |
46 static const int kPreferenceHost = 1; | |
47 static const int kPreferenceReflexive = 2; | |
48 static const int kPreferenceRelayed = 3; | |
49 | |
50 static const char kDummyAddress[] = "0.0.0.0"; | |
51 static const int kDummyPort = 9; | |
52 | |
53 static int GetCandidatePreferenceFromType(const std::string& type) { | |
54 int preference = kPreferenceUnknown; | |
55 if (type == cricket::LOCAL_PORT_TYPE) { | |
56 preference = kPreferenceHost; | |
57 } else if (type == cricket::STUN_PORT_TYPE) { | |
58 preference = kPreferenceReflexive; | |
59 } else if (type == cricket::RELAY_PORT_TYPE) { | |
60 preference = kPreferenceRelayed; | |
61 } else { | |
62 RTC_NOTREACHED(); | |
63 } | |
64 return preference; | |
65 } | |
66 | |
67 // Update the connection address for the MediaContentDescription based on the | |
68 // candidates. | |
69 static void UpdateConnectionAddress( | |
70 cricket::SessionDescription* description, | |
71 const std::vector<JsepCandidateCollection>& candidate_collections, | |
Taylor Brandstetter
2017/03/20 18:29:58
nit: I believe this method could take a single Jse
Zhi Huang
2017/03/21 03:43:12
I'll change it to take a single JsepCandidateColle
| |
72 size_t mediasection_index) { | |
73 int port = kDummyPort; | |
74 std::string ip = kDummyAddress; | |
75 int current_preference = kPreferenceUnknown; | |
76 int current_family = AF_UNSPEC; | |
77 for (size_t i = 0; i < candidate_collections[mediasection_index].count(); | |
78 ++i) { | |
79 const IceCandidateInterface* jsep_candidate = | |
80 candidate_collections[mediasection_index].at(i); | |
81 if (jsep_candidate->candidate().component() != | |
82 cricket::ICE_CANDIDATE_COMPONENT_RTP) { | |
83 continue; | |
84 } | |
85 // Default destination should be UDP only. | |
86 if (jsep_candidate->candidate().protocol() != cricket::UDP_PROTOCOL_NAME) { | |
87 continue; | |
88 } | |
89 const int preference = | |
90 GetCandidatePreferenceFromType(jsep_candidate->candidate().type()); | |
91 const int family = jsep_candidate->candidate().address().ipaddr().family(); | |
92 // See if this candidate is more preferable then the current one if it's the | |
93 // same family. Or if the current family is IPv4 already so we could safely | |
94 // ignore all IPv6 ones. WebRTC bug 4269. | |
95 // http://code.google.com/p/webrtc/issues/detail?id=4269 | |
96 if ((preference <= current_preference && current_family == family) || | |
97 (current_family == AF_INET && family == AF_INET6)) { | |
98 continue; | |
99 } | |
100 current_preference = preference; | |
101 current_family = family; | |
102 port = jsep_candidate->candidate().address().port(); | |
103 ip = jsep_candidate->candidate().address().ipaddr().ToString(); | |
104 } | |
105 rtc::SocketAddress connection_addr; | |
106 connection_addr.SetIP(ip); | |
107 connection_addr.SetPort(port); | |
108 auto content_description = static_cast<cricket::MediaContentDescription*>( | |
109 description->contents()[mediasection_index].description); | |
110 content_description->set_connection_address(connection_addr); | |
111 } | |
112 | |
41 const char SessionDescriptionInterface::kOffer[] = "offer"; | 113 const char SessionDescriptionInterface::kOffer[] = "offer"; |
42 const char SessionDescriptionInterface::kPrAnswer[] = "pranswer"; | 114 const char SessionDescriptionInterface::kPrAnswer[] = "pranswer"; |
43 const char SessionDescriptionInterface::kAnswer[] = "answer"; | 115 const char SessionDescriptionInterface::kAnswer[] = "answer"; |
44 | 116 |
45 const int JsepSessionDescription::kDefaultVideoCodecId = 100; | 117 const int JsepSessionDescription::kDefaultVideoCodecId = 100; |
46 const char JsepSessionDescription::kDefaultVideoCodecName[] = "VP8"; | 118 const char JsepSessionDescription::kDefaultVideoCodecName[] = "VP8"; |
47 | 119 |
48 SessionDescriptionInterface* CreateSessionDescription(const std::string& type, | 120 SessionDescriptionInterface* CreateSessionDescription(const std::string& type, |
49 const std::string& sdp, | 121 const std::string& sdp, |
50 SdpParseError* error) { | 122 SdpParseError* error) { |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
109 } | 181 } |
110 if (updated_candidate.password().empty()) { | 182 if (updated_candidate.password().empty()) { |
111 updated_candidate.set_password(transport_info->description.ice_pwd); | 183 updated_candidate.set_password(transport_info->description.ice_pwd); |
112 } | 184 } |
113 | 185 |
114 std::unique_ptr<JsepIceCandidate> updated_candidate_wrapper( | 186 std::unique_ptr<JsepIceCandidate> updated_candidate_wrapper( |
115 new JsepIceCandidate(candidate->sdp_mid(), | 187 new JsepIceCandidate(candidate->sdp_mid(), |
116 static_cast<int>(mediasection_index), | 188 static_cast<int>(mediasection_index), |
117 updated_candidate)); | 189 updated_candidate)); |
118 if (!candidate_collection_[mediasection_index].HasCandidate( | 190 if (!candidate_collection_[mediasection_index].HasCandidate( |
119 updated_candidate_wrapper.get())) | 191 updated_candidate_wrapper.get())) { |
120 candidate_collection_[mediasection_index].add( | 192 candidate_collection_[mediasection_index].add( |
121 updated_candidate_wrapper.release()); | 193 updated_candidate_wrapper.release()); |
194 UpdateConnectionAddress(description_.get(), candidate_collection_, | |
195 mediasection_index); | |
196 } | |
122 | 197 |
123 return true; | 198 return true; |
124 } | 199 } |
125 | 200 |
126 size_t JsepSessionDescription::RemoveCandidates( | 201 size_t JsepSessionDescription::RemoveCandidates( |
127 const std::vector<cricket::Candidate>& candidates) { | 202 const std::vector<cricket::Candidate>& candidates) { |
128 size_t num_removed = 0; | 203 size_t num_removed = 0; |
129 for (auto& candidate : candidates) { | 204 for (auto& candidate : candidates) { |
130 int mediasection_index = GetMediasectionIndex(candidate); | 205 int mediasection_index = GetMediasectionIndex(candidate); |
131 if (mediasection_index < 0) { | 206 if (mediasection_index < 0) { |
132 // Not found. | 207 // Not found. |
133 continue; | 208 continue; |
134 } | 209 } |
135 num_removed += candidate_collection_[mediasection_index].remove(candidate); | 210 num_removed += candidate_collection_[mediasection_index].remove(candidate); |
211 UpdateConnectionAddress(description_.get(), candidate_collection_, | |
212 mediasection_index); | |
136 } | 213 } |
137 return num_removed; | 214 return num_removed; |
138 } | 215 } |
139 | 216 |
140 size_t JsepSessionDescription::number_of_mediasections() const { | 217 size_t JsepSessionDescription::number_of_mediasections() const { |
141 if (!description_) | 218 if (!description_) |
142 return 0; | 219 return 0; |
143 return description_->contents().size(); | 220 return description_->contents().size(); |
144 } | 221 } |
145 | 222 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
190 const std::string& transport_name = candidate.transport_name(); | 267 const std::string& transport_name = candidate.transport_name(); |
191 for (size_t i = 0; i < description_->contents().size(); ++i) { | 268 for (size_t i = 0; i < description_->contents().size(); ++i) { |
192 if (transport_name == description_->contents().at(i).name) { | 269 if (transport_name == description_->contents().at(i).name) { |
193 return static_cast<int>(i); | 270 return static_cast<int>(i); |
194 } | 271 } |
195 } | 272 } |
196 return -1; | 273 return -1; |
197 } | 274 } |
198 | 275 |
199 } // namespace webrtc | 276 } // namespace webrtc |
OLD | NEW |