Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
SAT>IP server: fix RTP port trace, fixes #3751
  • Loading branch information
perexg committed Apr 28, 2016
1 parent 10f1326 commit 228cf1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/satip/rtp.c
Expand Up @@ -884,7 +884,7 @@ satip_rtcp_thread(void *aux)
if (tvhtrace_enabled()) {
msg[len] = '\0';
tcp_get_str_from_ip((struct sockaddr*)&rtp->peer2, addrbuf, sizeof(addrbuf));
tvhtrace("satips", "RTCP send to %s:%d : %s", addrbuf, IP_PORT(rtp->peer2), msg + 16);
tvhtrace("satips", "RTCP send to %s:%d : %s", addrbuf, ntohs(IP_PORT(rtp->peer2)), msg + 16);
}
if (rtp->port == RTSP_TCP_DATA) {
satip_rtp_tcp_data(rtp, 1, msg, len);
Expand Down

0 comments on commit 228cf1d

Please sign in to comment.