Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Unified Diff: webrtc/pc/srtpfilter.cc

Issue 2409513002: Remove useless debugging code (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/pc/srtpfilter.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/pc/srtpfilter.cc
diff --git a/webrtc/pc/srtpfilter.cc b/webrtc/pc/srtpfilter.cc
index 3f38d11a08804de1a284954ed97e5e0560866327..f1ecff1001a784b28cff9c8bd7f7d2ef82845d77 100644
--- a/webrtc/pc/srtpfilter.cc
+++ b/webrtc/pc/srtpfilter.cc
@@ -25,9 +25,6 @@
#include "webrtc/media/base/rtputils.h"
#include "webrtc/pc/externalhmac.h"
-// Enable this line to turn on SRTP debugging
-// #define SRTP_DEBUG
-
#ifdef HAVE_SRTP
extern "C" {
#ifdef SRTP_RELATIVE_PATH
@@ -38,16 +35,6 @@ extern "C" {
#include "third_party/libsrtp/include/srtp_priv.h"
#endif // SRTP_RELATIVE_PATH
}
-
-#if !defined(NDEBUG)
-extern "C" srtp_debug_module_t mod_srtp;
-extern "C" srtp_debug_module_t mod_auth;
-extern "C" srtp_debug_module_t mod_cipher;
-extern "C" srtp_debug_module_t mod_stat;
-extern "C" srtp_debug_module_t mod_alloc;
-extern "C" srtp_debug_module_t mod_aes_icm;
-extern "C" srtp_debug_module_t mod_aes_hmac;
-#endif
#endif // HAVE_SRTP
namespace cricket {
@@ -65,21 +52,6 @@ bool SrtpNotAvailable(const char *func) {
#endif // !HAVE_SRTP
-void EnableSrtpDebugging() {
-#ifdef HAVE_SRTP
-#if !defined(NDEBUG)
- debug_on(mod_srtp);
- debug_on(mod_auth);
- debug_on(mod_cipher);
- debug_on(mod_stat);
- debug_on(mod_alloc);
- debug_on(mod_aes_icm);
- // debug_on(mod_aes_cbc);
- // debug_on(mod_hmac);
-#endif
-#endif // HAVE_SRTP
-}
-
// NOTE: This is called from ChannelManager D'tor.
void ShutdownSrtp() {
#ifdef HAVE_SRTP
« no previous file with comments | « webrtc/pc/srtpfilter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698