Home | History | Annotate | Download | only in base

Lines Matching refs:dtls

149     LOG_J(LS_ERROR, this) << "Error re-initializing DTLS";
162 LOG_J(LS_INFO, this) << "Ignoring identical DTLS identity";
165 LOG_J(LS_ERROR, this) << "Can't change DTLS local identity in this state";
174 LOG_J(LS_INFO, this) << "NULL DTLS identity supplied. Not doing DTLS";
218 LOG_J(LS_INFO, this) << "Ignoring identical remote DTLS fingerprint";
226 LOG_J(LS_ERROR, this) << "Can't set DTLS remote settings in this state.";
231 LOG_J(LS_INFO, this) << "Other side didn't support DTLS.";
236 // At this point we know we are doing DTLS
263 LOG_J(LS_ERROR, this) << "Failed to create DTLS adapter.";
278 LOG_J(LS_ERROR, this) << "Couldn't set DTLS certificate digest.";
282 // Set up DTLS-SRTP, if it's been enabled.
285 LOG_J(LS_ERROR, this) << "Couldn't set DTLS-SRTP ciphers.";
289 LOG_J(LS_INFO, this) << "Not using DTLS.";
292 LOG_J(LS_INFO, this) << "DTLS setup complete.";
302 LOG(LS_WARNING) << "Ignoring new SRTP ciphers while DTLS is negotiating";
307 // We don't support DTLS renegotiation currently. If new set of srtp ciphers
312 LOG(LS_ERROR) << "Failed to get the current SRTP cipher for DTLS channel";
324 LOG(LS_WARNING) << "Ignoring new set of SRTP ciphers, as DTLS "
360 // We don't know if we are doing DTLS yet, so we can't send a packet.
385 // Not doing DTLS.
398 // (1) If we're not doing DTLS-SRTP, then the state is just the
400 // (2) If we're doing DTLS-SRTP:
401 // - Prior to the DTLS handshake, the state is neither readable or
404 // start the DTLS handshake
405 // - Once the DTLS handshake completes, the state is that of the
469 // We are not doing DTLS
476 // side is ready to do DTLS and start the handshake
479 << "doing DTLS or not; dropping.";
483 // Drop packets received before DTLS has actually started
484 LOG_J(LS_INFO, this) << "Dropping packet received before DTLS started.";
489 // We should only get DTLS or SRTP packets; STUN's already been demuxed.
490 // Is this potentially a DTLS packet?
493 LOG_J(LS_ERROR, this) << "Failed to handle DTLS packet.";
497 // Not a DTLS
499 LOG_J(LS_ERROR, this) << "Received non-DTLS packet before DTLS "
506 LOG_J(LS_ERROR, this) << "Received unexpected non-DTLS packet.";
529 void DtlsTransportChannelWrapper::OnDtlsEvent(rtc::StreamInterface* dtls,
532 ASSERT(dtls == dtls_.get());
535 LOG_J(LS_INFO, this) << "DTLS handshake complete.";
555 LOG_J(LS_INFO, this) << "DTLS channel closed";
557 LOG_J(LS_INFO, this) << "DTLS channel error, code=" << err;
569 LOG_J(LS_ERROR, this) << "Couldn't start DTLS handshake";
574 << "DtlsTransportChannelWrapper: Started DTLS handshake";
581 // Called from OnReadPacket when a DTLS packet is received.
585 // just looks like DTLS.
601 // the DTLS stack.