mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
srtp内部日志相关设置
This commit is contained in:
parent
8aa3ff425b
commit
3dac9e1c51
@ -5,6 +5,7 @@
|
|||||||
#include <cstring> // std::memset(), std::memcpy()
|
#include <cstring> // std::memset(), std::memcpy()
|
||||||
#include "logger.h"
|
#include "logger.h"
|
||||||
#include "Util/util.h"
|
#include "Util/util.h"
|
||||||
|
#include "Util/logger.h"
|
||||||
using namespace toolkit;
|
using namespace toolkit;
|
||||||
|
|
||||||
namespace RTC
|
namespace RTC
|
||||||
@ -60,6 +61,23 @@ namespace RTC
|
|||||||
|
|
||||||
srtp_err_status_t err = srtp_init();
|
srtp_err_status_t err = srtp_init();
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
srtp_install_log_handler([](srtp_log_level_t level,
|
||||||
|
const char *msg,
|
||||||
|
void *data) {
|
||||||
|
printf("%s\n", msg);
|
||||||
|
}, nullptr);
|
||||||
|
srtp_set_debug_module("srtp", 1);
|
||||||
|
srtp_set_debug_module("hmac sha-1", 1);
|
||||||
|
srtp_set_debug_module("aes icm", 1);
|
||||||
|
srtp_set_debug_module("alloc", 1);
|
||||||
|
srtp_set_debug_module("stat test", 1);
|
||||||
|
srtp_set_debug_module("cipher", 1);
|
||||||
|
srtp_set_debug_module("auth func", 1);
|
||||||
|
srtp_set_debug_module("crypto kernel", 1);
|
||||||
|
srtp_list_debug_modules();
|
||||||
|
#endif
|
||||||
|
|
||||||
if (DepLibSRTP::IsError(err)) {
|
if (DepLibSRTP::IsError(err)) {
|
||||||
MS_THROW_ERROR("srtp_init() failed: %s", DepLibSRTP::GetErrorString(err));
|
MS_THROW_ERROR("srtp_init() failed: %s", DepLibSRTP::GetErrorString(err));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user