aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtcp.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-rtcp.c')
-rw-r--r--epan/dissectors/packet-rtcp.c24
1 files changed, 13 insertions, 11 deletions
diff --git a/epan/dissectors/packet-rtcp.c b/epan/dissectors/packet-rtcp.c
index 72ffc4e610..5acd01e157 100644
--- a/epan/dissectors/packet-rtcp.c
+++ b/epan/dissectors/packet-rtcp.c
@@ -28,16 +28,18 @@
* port number, but there is a registered port available, port 5005
* See Annex B of ITU-T Recommendation H.225.0, section B.7
*
- * Information on PoC can be found from http://www.openmobilealliance.org/
+ * Information on PoC can be found from
+ * https://www.omaspecworks.org (OMA SpecWorks, formerly the Open
+ * Mobile Alliance - http://www.openmobilealliance.org/)
*
* RTCP XR is specified in RFC 3611.
*
- * See also http://www.iana.org/assignments/rtp-parameters
+ * See also https://www.iana.org/assignments/rtp-parameters
*
* RTCP FB is specified in RFC 4585 and extended by RFC 5104
*
- * MS-RTP: Real-time Transport Protocol (RTP) Extensions http://msdn.microsoft.com/en-us/library/office/cc431492.aspx
- *
+ * MS-RTP: Real-time Transport Protocol (RTP) Extensions
+ * https://docs.microsoft.com/en-us/openspecs/office_protocols/ms-rtp
*/
/*
@@ -45,9 +47,9 @@
* Torsten Loebner (loebnert@googlemail.com) in the context of a graduation
* project with the research organization TNO in Delft, Netherland.
* The extension is based on the RTCP XR block specified in
- * ETSI TS 182 063 v3.5.2 Annex W (http://www.etsi.org/deliver/etsi_ts/183000_183099/183063/),
+ * ETSI TS 182 063 v3.5.2 Annex W (https://www.etsi.org/deliver/etsi_ts/183000_183099/183063/),
* which was registered by IANA as RTCP XR Block Type 12
- * (http://www.iana.org/assignments/rtcp-xr-block-types/rtcp-xr-block-types.xml).
+ * (https://www.iana.org/assignments/rtcp-xr-block-types/rtcp-xr-block-types.xml).
*/
#include "config.h"
@@ -101,7 +103,7 @@ static const value_string rtcp_version_vals[] =
#define RTCP_SMPTETC 194
#define RTCP_IJ 195
/* RTCP packet types according to Section A.11.1 */
-/* And http://www.iana.org/assignments/rtp-parameters */
+/* And https://www.iana.org/assignments/rtp-parameters/rtp-parameters.xhtml */
#define RTCP_SR 200
#define RTCP_RR 201
#define RTCP_SDES 202
@@ -166,7 +168,7 @@ static const value_string rtcp_sdes_type_vals[] =
};
/* RTCP XR Blocks (Section 4, RTC 3611)
- * or http://www.iana.org/assignments/rtcp-xr-block-types */
+ * or https://www.iana.org/assignments/rtcp-xr-block-types */
#define RTCP_XR_LOSS_RLE 1
#define RTCP_XR_DUP_RLE 2
#define RTCP_XR_PKT_RXTIMES 3
@@ -193,7 +195,7 @@ static const value_string rtcp_xr_type_vals[] =
{ RTCP_XR_TI_VOIP, "Texas Instruments Extended VoIP Quality Block" },
{ RTCP_XR_PR_LOSS_RLE, "Post-repair Loss RLE Report Block" },
{ RTCP_XR_MC_ACQ, "Multicast Acquisition Report Block" },
- { RTCP_XR_IDMS, "Inter-destination Media Synchronization Block" }, /* [http://www.etsi.org/deliver/etsi_ts/183000_183099/183063/][ETSI 183 063][Miguel_Angel_Reina_Ortega] */
+ { RTCP_XR_IDMS, "Inter-destination Media Synchronization Block" }, /* [https://www.etsi.org/deliver/etsi_ts/183000_183099/183063/][ETSI 183 063][Miguel_Angel_Reina_Ortega] */
{ 0, NULL}
};
@@ -1636,7 +1638,7 @@ dissect_rtcp_psfb( tvbuff_t *tvb, int offset, proto_tree *rtcp_tree,
*
* REMB (Receiver Estimated Maximum Bitrate) is, according
* to section 2.3 "Signaling of use of this extension" of
- * http://tools.ietf.org/html/draft-alvestrand-rmcat-remb-03,
+ * https://tools.ietf.org/html/draft-alvestrand-rmcat-remb-03,
* indicated as an SDP option when the session is set up.
*
* MS-RTP is, according to MS-RTP and according to MS-SDPEXT
@@ -1650,7 +1652,7 @@ dissect_rtcp_psfb( tvbuff_t *tvb, int offset, proto_tree *rtcp_tree,
guint32 magic_value = tvb_get_ntohl( tvb, offset);
/* look for string literal 'REMB' which is 0x52454d42 hex */
if (magic_value == 0x52454d42) {
- /* Handle REMB (Receiver Estimated Maximum Bitrate) - http://tools.ietf.org/html/draft-alvestrand-rmcat-remb-00 */
+ /* Handle REMB (Receiver Estimated Maximum Bitrate) - https://tools.ietf.org/html/draft-alvestrand-rmcat-remb-00 */
offset = dissect_rtcp_psfb_remb(tvb, offset, rtcp_tree, top_item, counter, &read_fci);
} else {
/* Handle MS Application Layer Feedback Messages - MS-RTP */