aboutsummaryrefslogtreecommitdiffstats
path: root/library/IPA_Emulation.ttcnpp
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-02-21 12:18:46 +0100
committerHarald Welte <laforge@gnumonks.org>2018-02-21 12:20:30 +0100
commit3bc387f41aa2965361a610c847aee75049d08e6c (patch)
tree6eabb51c73bc514d02c1d482c41a6dcd5b8625cb /library/IPA_Emulation.ttcnpp
parentdf277258f1d5fbf8ce80c2748c4fb0783359790f (diff)
IPA_Emulation: Don't log IPAC_MSGT_ID_RESP as "Unknown/unsupported"
Diffstat (limited to 'library/IPA_Emulation.ttcnpp')
-rw-r--r--library/IPA_Emulation.ttcnpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/library/IPA_Emulation.ttcnpp b/library/IPA_Emulation.ttcnpp
index 3508091b..c3cfe8d1 100644
--- a/library/IPA_Emulation.ttcnpp
+++ b/library/IPA_Emulation.ttcnpp
@@ -342,6 +342,9 @@ private function f_ccm_rx(PDU_IPA_CCM ccm) runs on IPA_Emulation_CT {
case (IPAC_MSGT_ID_GET) {
f_ccm_tx(f_ccm_make_id_resp(ccm));
}
+ case (IPAC_MSGT_ID_RESP) {
+ log("IPA ID RESP: ", ccm.u.resp);
+ }
case else {
log("Unknown/unsupported IPA CCM message type", ccm);
}