aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/ip/snoopy/rtp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/ip/snoopy/rtp.c')
-rwxr-xr-xsrc/cmd/ip/snoopy/rtp.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/cmd/ip/snoopy/rtp.c b/src/cmd/ip/snoopy/rtp.c
index e9160711..1aef15fa 100755
--- a/src/cmd/ip/snoopy/rtp.c
+++ b/src/cmd/ip/snoopy/rtp.c
@@ -6,15 +6,15 @@
typedef struct Hdr Hdr;
struct Hdr {
- uchar hdr; // RTP header
- uchar marker; // Payload and marker
- uchar seq[2]; // Sequence number
- uchar ts[4]; // Time stamp
- uchar ssrc[4]; // Synchronization source identifier
+ uchar hdr; /* RTP header */
+ uchar marker; /* Payload and marker */
+ uchar seq[2]; /* Sequence number */
+ uchar ts[4]; /* Time stamp */
+ uchar ssrc[4]; /* Synchronization source identifier */
};
enum{
- RTPLEN = 12, // Minimum size of an RTP header
+ RTPLEN = 12, /* Minimum size of an RTP header */
};
static int
@@ -58,5 +58,5 @@ Proto rtp = {
nil,
nil,
nil,
- defaultframer,
+ defaultframer
};