aboutsummaryrefslogtreecommitdiffstats
path: root/ui/tap-rtp-analysis.c
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2020-10-03 07:54:12 -0700
committerGuy Harris <gharris@sonic.net>2020-10-03 07:54:12 -0700
commita883081b70a5a77be44ee29cd507cc321f321e4b (patch)
treed47cbdc59cb49f35983637f7ab621060aeb4832d /ui/tap-rtp-analysis.c
parente02229250d4b366e30776e6c78952f2472fababb (diff)
Update URLs pointing to the bug database.
Switch from bugs.wireshark.org to the GitLab issues list.
Diffstat (limited to 'ui/tap-rtp-analysis.c')
-rw-r--r--ui/tap-rtp-analysis.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/tap-rtp-analysis.c b/ui/tap-rtp-analysis.c
index d86a0f0693..ee7158eb9e 100644
--- a/ui/tap-rtp-analysis.c
+++ b/ui/tap-rtp-analysis.c
@@ -221,7 +221,7 @@ rtppacket_analyse(tap_rtp_stat_t *statinfo,
/* Reset flags */
statinfo->flags = 0;
#if 0
- /*According to bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=11478
+ /*According to bug https://gitlab.com/wireshark/wireshark/-/issues/11478
* this code causes problems. A better solution is needed if there is need for the functionality */
/* Try to detect duplicated packets due to mirroring/span ports by comparing src MAC addresses.
* Check for duplicates (src mac differs from first_packet_mac_addr) */
@@ -285,7 +285,7 @@ rtppacket_analyse(tap_rtp_stat_t *statinfo,
* we assume that instead of being massively late we lost the packet(s)
* that would have indicated the sequence number wrapping. An imprecise
* heuristic at best, but it seems to work well enough.
- * https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5958 */
+ * https://gitlab.com/wireshark/wireshark/-/issues/5958 */
else if (statinfo->seq_num+1 < rtpinfo->info_seq_num || statinfo->seq_num - rtpinfo->info_seq_num > 0xFF00) {
statinfo->seq_num = rtpinfo->info_seq_num;
statinfo->sequence++;