Skip to content

Commit

Permalink
be more verbose (#312)
Browse files Browse the repository at this point in the history
  • Loading branch information
weinrank authored and tuexen committed Apr 25, 2019
1 parent 70b3cd7 commit 0befd0a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions usrsctplib/user_recv_thread.c
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,7 @@ recv_function_raw(void *arg)
}
/* free the array itself */
free(recvmbuf);
SCTPDBG(SCTP_DEBUG_USR, "%s: Exiting SCTP/IP4 rcv", __func__);
return (NULL);
}
#endif
Expand Down Expand Up @@ -620,6 +621,7 @@ recv_function_raw6(void *arg)
}
/* free the array itself */
free(recvmbuf6);
SCTPDBG(SCTP_DEBUG_USR, "%s: Exiting SCTP/IP6 rcv", __func__);
return (NULL);
}
#endif
Expand Down Expand Up @@ -826,6 +828,7 @@ recv_function_udp(void *arg)
}
/* free the array itself */
free(udprecvmbuf);
SCTPDBG(SCTP_DEBUG_USR, "%s: Exiting SCTP/UDP/IP4 rcv", __func__);
return (NULL);
}
#endif
Expand Down Expand Up @@ -1014,6 +1017,7 @@ recv_function_udp6(void *arg)
}
/* free the array itself */
free(udprecvmbuf6);
SCTPDBG(SCTP_DEBUG_USR, "%s: Exiting SCTP/UDP/IP6 rcv", __func__);
return (NULL);
}
#endif
Expand Down

0 comments on commit 0befd0a

Please sign in to comment.