zrtp tweaks, more coming

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15987 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2009-12-17 18:33:45 +00:00
parent 4942f22b26
commit 9fa63cd9ba
2 changed files with 2 additions and 24 deletions

View File

@ -1,22 +0,0 @@
Index: src/switch_rtp.c
===================================================================
--- src/switch_rtp.c (revision 14727)
+++ src/switch_rtp.c (working copy)
@@ -549,7 +549,7 @@
}
}
-static void zrtp_logger(int level, const char *data, int len)
+static void zrtp_logger(int level, const char *data, int len, int offset)
{
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "%s", data);
}
@@ -598,7 +598,7 @@
zrtp_config.cb.misc_cb.on_send_packet = zrtp_send_rtp_callback;
zrtp_config.cb.event_cb.on_zrtp_security_event = zrtp_event_callback;
- zrtp_log_set_log_engine(zrtp_logger);
+ zrtp_log_set_log_engine((zrtp_log_engine*)zrtp_logger);
zrtp_log_set_level(4);
if (zrtp_status_ok != zrtp_init(&zrtp_config, &zrtp_global)) {
abort();

View File

@ -551,7 +551,7 @@ static void zrtp_event_callback(zrtp_stream_t *stream, unsigned event)
}
}
static void zrtp_logger(int level, const char *data, int len)
static void zrtp_logger(int level, const char *data, int len, int offset)
{
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "%s", data);
}
@ -600,7 +600,7 @@ SWITCH_DECLARE(void) switch_rtp_init(switch_memory_pool_t *pool)
zrtp_config.cb.misc_cb.on_send_packet = zrtp_send_rtp_callback;
zrtp_config.cb.event_cb.on_zrtp_security_event = zrtp_event_callback;
zrtp_log_set_log_engine(zrtp_logger);
zrtp_log_set_log_engine((zrtp_log_engine*)zrtp_logger);
zrtp_log_set_level(4);
if (zrtp_status_ok == zrtp_init(&zrtp_config, &zrtp_global)) {