aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric <ewild@sysmocom.de>2020-04-22 15:21:49 +0200
committerOliver Smith <osmith@sysmocom.de>2020-05-27 14:00:05 +0200
commit420e5f61128856c7b9001f28d32c50a23b40385e (patch)
tree0bcbb63cae6622b4d359eb8e3c3ba569929a84c9
parent453c32c09109d1525de890cd8888f401467adcae (diff)
ipc: print received path delay value
-rw-r--r--Transceiver52M/device/ipc/IPCDevice.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Transceiver52M/device/ipc/IPCDevice.cpp b/Transceiver52M/device/ipc/IPCDevice.cpp
index 9aac410..8658a34 100644
--- a/Transceiver52M/device/ipc/IPCDevice.cpp
+++ b/Transceiver52M/device/ipc/IPCDevice.cpp
@@ -316,6 +316,8 @@ int IPCDevice::ipc_rx_open_cnf(const struct ipc_sk_if_open_cnf *open_cnf)
LOGC(DDEV, NOTICE)
<< "Rx Open CNF:"
<< " return_code=" << (unsigned int)open_cnf->return_code << " shm_name=" << open_cnf->shm_name;
+ LOGC(DDEV, NOTICE) << "Rx Open CNF:"
+ << " ipc device path delay: " << (unsigned int)open_cnf->path_delay;
for (i = 0; i < chans; i++) {
int rc;
LOGC(DDEV, NOTICE) << "chan " << i << ": sk_path=" << open_cnf->chan_info[i].chan_ipc_sk_path;