From a7b3d18e622e4ec4433c3af315cc1e572c41c9e6 Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Mon, 4 Jan 2010 19:19:12 +0100 Subject: [PATCH 1/1] Notifies are now received from GSM phones. --- gsm.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gsm.cpp b/gsm.cpp index 62df3e3..e747ff0 100644 --- a/gsm.cpp +++ b/gsm.cpp @@ -760,8 +760,15 @@ void Pgsm::rel_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc /* NOTIFY INDICATION */ void Pgsm::notify_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc) { + struct lcr_msg *message; + gsm_trace_header(p_m_mISDNport, this, msg_type, DIRECTION_IN); + add_trace("notify", NULL, "%d", mncc->notify); end_trace(); + + message = message_create(p_serial, ACTIVE_EPOINT(p_epointlist), PORT_TO_EPOINT, MESSAGE_NOTIFY); + message->param.notifyinfo.notify = mncc->notify; + message_put(message); } -- 2.13.6