From 0c0993c3b782bb7f7aad2ec9930ecbb0f4523bdd Mon Sep 17 00:00:00 2001 From: Radek Polak Date: Sat, 4 Feb 2012 16:00:03 +0100 Subject: [PATCH] log when routing started --- gsm-voice-routing.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gsm-voice-routing.c b/gsm-voice-routing.c index 4ca5fea..9529d0d 100644 --- a/gsm-voice-routing.c +++ b/gsm-voice-routing.c @@ -412,7 +412,10 @@ int main() continue; } - started = 1; + if(!started) { + fprintf(logfile, "voice routing started\n"); + started = 1; + } memmove(p0.period_buffer, r1.period_buffer, r1.period_buffer_size); route_stream_write(&p0); -- 2.39.5