| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2009 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2009 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 "webrtc/pc/srtpfilter.h" | 11 #include "webrtc/pc/srtpfilter.h" |
| 12 | 12 |
| 13 #include <string.h> | 13 #include <string.h> |
| 14 | 14 |
| 15 #include <algorithm> | 15 #include <algorithm> |
| 16 | 16 |
| 17 #include "webrtc/base/base64.h" | 17 #include "webrtc/base/base64.h" |
| 18 #include "webrtc/base/byteorder.h" | 18 #include "webrtc/base/byteorder.h" |
| 19 #include "webrtc/base/common.h" | 19 #include "webrtc/base/common.h" |
| 20 #include "webrtc/base/logging.h" | 20 #include "webrtc/base/logging.h" |
| 21 #include "webrtc/base/stringencode.h" | 21 #include "webrtc/base/stringencode.h" |
| 22 #include "webrtc/base/timeutils.h" | 22 #include "webrtc/base/timeutils.h" |
| 23 #include "webrtc/media/base/rtputils.h" | 23 #include "webrtc/media/base/rtputils.h" |
| 24 | 24 |
| 25 // Enable this line to turn on SRTP debugging | 25 // Enable this line to turn on SRTP debugging |
| 26 // #define SRTP_DEBUG | 26 // #define SRTP_DEBUG |
| 27 | 27 |
| 28 #ifdef HAVE_SRTP | 28 #ifdef HAVE_SRTP |
| 29 extern "C" { | 29 extern "C" { |
| 30 #ifdef SRTP_RELATIVE_PATH | |
| 31 #include "srtp.h" // NOLINT | |
| 32 #include "srtp_priv.h" // NOLINT | |
| 33 #else | |
| 34 #include "third_party/libsrtp/srtp/include/srtp.h" | 30 #include "third_party/libsrtp/srtp/include/srtp.h" |
| 35 #include "third_party/libsrtp/srtp/include/srtp_priv.h" | 31 #include "third_party/libsrtp/srtp/include/srtp_priv.h" |
| 36 #endif // SRTP_RELATIVE_PATH | |
| 37 } | 32 } |
| 38 #ifdef ENABLE_EXTERNAL_AUTH | 33 #ifdef ENABLE_EXTERNAL_AUTH |
| 39 #include "webrtc/pc/externalhmac.h" | 34 #include "webrtc/pc/externalhmac.h" |
| 40 #endif // ENABLE_EXTERNAL_AUTH | 35 #endif // ENABLE_EXTERNAL_AUTH |
| 41 #if !defined(NDEBUG) | 36 #if !defined(NDEBUG) |
| 42 extern "C" debug_module_t mod_srtp; | 37 extern "C" debug_module_t mod_srtp; |
| 43 extern "C" debug_module_t mod_auth; | 38 extern "C" debug_module_t mod_auth; |
| 44 extern "C" debug_module_t mod_cipher; | 39 extern "C" debug_module_t mod_cipher; |
| 45 extern "C" debug_module_t mod_stat; | 40 extern "C" debug_module_t mod_stat; |
| 46 extern "C" debug_module_t mod_alloc; | 41 extern "C" debug_module_t mod_alloc; |
| (...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 926 SrtpNotAvailable(__FUNCTION__); | 921 SrtpNotAvailable(__FUNCTION__); |
| 927 } | 922 } |
| 928 | 923 |
| 929 void SrtpStat::HandleSrtpResult(const SrtpStat::FailureKey& key) { | 924 void SrtpStat::HandleSrtpResult(const SrtpStat::FailureKey& key) { |
| 930 SrtpNotAvailable(__FUNCTION__); | 925 SrtpNotAvailable(__FUNCTION__); |
| 931 } | 926 } |
| 932 | 927 |
| 933 #endif // HAVE_SRTP | 928 #endif // HAVE_SRTP |
| 934 | 929 |
| 935 } // namespace cricket | 930 } // namespace cricket |
| OLD | NEW |