Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions source/InterDeviceManager/Idm_msg_process.c
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,9 @@ char* IDM_Incoming_FT_Response(connection_info_t* conn_info,payload_t* payload)
length+=bytes;
}
else{
CcspTraceError(("(%s:%d) Data encryption failed (Err: %d)\n", __FUNCTION__, __LINE__,bytes));
CcspTraceError(("(%s:%d) Socket Read Error (bytes read: %d)\n", __FUNCTION__, __LINE__,bytes));
// Exit from loop if socket is not usable or there is no data to read
break;
}
}
if(buf){
Expand Down Expand Up @@ -875,7 +877,9 @@ char* IDM_SFT_receive(connection_info_t* conn_info,void* payload)
length+=bytes;
}
else{
CcspTraceError(("(%s:%d) Data encryption failed (Err: %d)\n", __FUNCTION__, __LINE__,bytes));
CcspTraceError(("(%s:%d) Socket Read Error (bytes read: %d)\n", __FUNCTION__, __LINE__,bytes));
// Exit from loop if socket is not usable or no data to read
break;
}
}
if(buf){
Expand Down