This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
rtpengine
mirror of
https://github.com/sipwise/rtpengine
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
822
Wiki
Activity
Browse Source
Fixed RTCP parsing of bitfield structs.
pull/101/head
Frederic-Philippe Metz
11 years ago
parent
f8aaf358cd
commit
8a0fbf201f
1 changed files
with
5 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-5
daemon/rtcp.c
+ 5
- 5
daemon/rtcp.c
View File
@ -483,11 +483,11 @@ int rtcp_demux_is_rtcp(const str *s) {
void
print_rtcp_common
(
char
*
*
cdrbufcur
,
const
pjmedia_rtcp_common
*
common
)
{
*
cdrbufcur
+
=
sprintf
(
*
cdrbufcur
,
"
version=%u, padding=%u, count=%u, payloadtype=%u, length=%u, ssrc=%u,
"
,
ntohl
(
common
-
>
version
)
,
ntohl
(
common
-
>
p
)
,
ntohl
(
common
-
>
count
)
,
ntohl
(
common
-
>
pt
)
,
ntohl
(
common
-
>
length
)
,
common
-
>
version
,
common
-
>
p
,
common
-
>
count
,
common
-
>
pt
,
common
-
>
length
,
ntohl
(
common
-
>
ssrc
)
)
;
}
Write
Preview
Loading…
Cancel
Save