| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libjingle | 2 * libjingle |
| 3 * Copyright 2013 Google Inc. | 3 * Copyright 2013 Google Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
| 9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 // RFC 4566 suggested a Network Time Protocol (NTP) format timestamp | 141 // RFC 4566 suggested a Network Time Protocol (NTP) format timestamp |
| 142 // as the session id and session version. To simplify, it should be fine | 142 // as the session id and session version. To simplify, it should be fine |
| 143 // to just use a random number as session id and start version from | 143 // to just use a random number as session id and start version from |
| 144 // |kInitSessionVersion|. | 144 // |kInitSessionVersion|. |
| 145 session_version_(kInitSessionVersion), | 145 session_version_(kInitSessionVersion), |
| 146 dtls_identity_store_(dtls_identity_store.Pass()), | 146 dtls_identity_store_(dtls_identity_store.Pass()), |
| 147 session_(session), | 147 session_(session), |
| 148 session_id_(session_id), | 148 session_id_(session_id), |
| 149 data_channel_type_(dct), | 149 data_channel_type_(dct), |
| 150 identity_request_state_(IDENTITY_NOT_NEEDED) { | 150 identity_request_state_(IDENTITY_NOT_NEEDED) { |
| 151 transport_desc_factory_.set_protocol(cricket::ICEPROTO_RFC5245); | |
| 152 session_desc_factory_.set_add_legacy_streams(false); | 151 session_desc_factory_.set_add_legacy_streams(false); |
| 153 // SRTP-SDES is disabled if DTLS is on. | 152 // SRTP-SDES is disabled if DTLS is on. |
| 154 SetSdesPolicy(dtls_enabled ? cricket::SEC_DISABLED : cricket::SEC_REQUIRED); | 153 SetSdesPolicy(dtls_enabled ? cricket::SEC_DISABLED : cricket::SEC_REQUIRED); |
| 155 | 154 |
| 156 // If |dtls_enabled| we must have a |dtls_identity_store_|. | 155 // If |dtls_enabled| we must have a |dtls_identity_store_|. |
| 157 DCHECK(!dtls_enabled || dtls_identity_store_); | 156 DCHECK(!dtls_enabled || dtls_identity_store_); |
| 158 | 157 |
| 159 if (dtls_enabled && dtls_identity_store_) { | 158 if (dtls_enabled && dtls_identity_store_) { |
| 160 identity_request_observer_ = | 159 identity_request_observer_ = |
| 161 new rtc::RefCountedObject<WebRtcIdentityRequestObserver>(); | 160 new rtc::RefCountedObject<WebRtcIdentityRequestObserver>(); |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 if (create_session_description_requests_.front().type == | 448 if (create_session_description_requests_.front().type == |
| 450 CreateSessionDescriptionRequest::kOffer) { | 449 CreateSessionDescriptionRequest::kOffer) { |
| 451 InternalCreateOffer(create_session_description_requests_.front()); | 450 InternalCreateOffer(create_session_description_requests_.front()); |
| 452 } else { | 451 } else { |
| 453 InternalCreateAnswer(create_session_description_requests_.front()); | 452 InternalCreateAnswer(create_session_description_requests_.front()); |
| 454 } | 453 } |
| 455 create_session_description_requests_.pop(); | 454 create_session_description_requests_.pop(); |
| 456 } | 455 } |
| 457 } | 456 } |
| 458 } // namespace webrtc | 457 } // namespace webrtc |
| OLD | NEW |