diff --git a/epan/dissectors/packet-lapd.c b/epan/dissectors/packet-lapd.c index a60a4f8e5c..b087ba0494 100644 --- a/epan/dissectors/packet-lapd.c +++ b/epan/dissectors/packet-lapd.c @@ -662,7 +662,7 @@ proto_register_lapd(void) { &hf_lapd_checksum, { "Checksum", "lapd.checksum", FT_UINT16, BASE_HEX, - NULL, 0x0, "Details at: http://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html", HFILL }}, + NULL, 0x0, "Details at: https://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html", HFILL }}, { &hf_lapd_checksum_status, { "Checksum Status", "lapd.checksum.status", FT_UINT8, BASE_NONE, @@ -754,7 +754,7 @@ proto_reg_handoff_lapd(void) } /* - * Editor modelines - http://www.wireshark.org/tools/modelines.html + * Editor modelines - https://www.wireshark.org/tools/modelines.html * * Local variables: * c-basic-offset: 8 diff --git a/epan/dissectors/packet-stt.c b/epan/dissectors/packet-stt.c index e7262fbf10..a57f77319c 100644 --- a/epan/dissectors/packet-stt.c +++ b/epan/dissectors/packet-stt.c @@ -29,8 +29,7 @@ static gboolean pref_reassemble = TRUE; static gboolean pref_check_checksum = FALSE; /* IANA ref: - * http://www.iana.org/assignments/service-names-port-numbers/service- - * names-port-numbers.xml + * https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml */ #define TCP_PORT_STT 7471 @@ -761,7 +760,7 @@ proto_register_stt(void) { &hf_stt_checksum, { "Checksum", "stt.checksum", FT_UINT16, BASE_HEX, NULL, 0x0, - "Details at: http://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html", HFILL + "Details at: https://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html", HFILL }, }, { &hf_stt_checksum_status, @@ -913,7 +912,7 @@ proto_reg_handoff_stt(void) } /* - * Editor modelines - http://www.wireshark.org/tools/modelines.html + * Editor modelines - https://www.wireshark.org/tools/modelines.html * * Local variables: * c-basic-offset: 4 diff --git a/epan/dissectors/packet-tcp.c b/epan/dissectors/packet-tcp.c index 4f3df9b0c0..bef2f2be44 100644 --- a/epan/dissectors/packet-tcp.c +++ b/epan/dissectors/packet-tcp.c @@ -4364,7 +4364,7 @@ get_or_create_mptcpd_from_key(struct tcp_analysis* tcpd, tcp_flow_t *fwd, guint6 * The TCP Extensions for Multipath Operation with Multiple Addresses * are defined in RFC 6824 * - * + * https://tools.ietf.org/html/rfc6824 * * Author: Andrei Maruseac * Matthieu Coudron @@ -6897,7 +6897,7 @@ proto_register_tcp(void) { &hf_tcp_checksum, { "Checksum", "tcp.checksum", FT_UINT16, BASE_HEX, NULL, 0x0, - "Details at: http://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html", HFILL }}, + "Details at: https://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html", HFILL }}, { &hf_tcp_checksum_status, { "Checksum Status", "tcp.checksum.status", FT_UINT8, BASE_NONE, VALS(proto_checksum_vals), 0x0, diff --git a/epan/dissectors/packet-udp.c b/epan/dissectors/packet-udp.c index 8301083642..1e74cd7ac5 100644 --- a/epan/dissectors/packet-udp.c +++ b/epan/dissectors/packet-udp.c @@ -77,7 +77,7 @@ static header_field_info hfi_udp_length UDP_HFI_INIT = static header_field_info hfi_udp_checksum UDP_HFI_INIT = { "Checksum", "udp.checksum", FT_UINT16, BASE_HEX, NULL, 0x0, - "Details at: http://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html", HFILL }; + "Details at: https://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html", HFILL }; static header_field_info hfi_udp_checksum_calculated UDP_HFI_INIT = { "Calculated Checksum", "udp.checksum_calculated", FT_UINT16, BASE_HEX, NULL, 0x0, @@ -1392,7 +1392,7 @@ proto_reg_handoff_udp(void) } /* - * Editor modelines - http://www.wireshark.org/tools/modelines.html + * Editor modelines - https://www.wireshark.org/tools/modelines.html * * Local variables: * c-basic-offset: 2 diff --git a/epan/dissectors/packet-v5dl.c b/epan/dissectors/packet-v5dl.c index 76c7795078..2066c1a395 100644 --- a/epan/dissectors/packet-v5dl.c +++ b/epan/dissectors/packet-v5dl.c @@ -377,7 +377,7 @@ proto_register_v5dl(void) #if 0 { &hf_v5dl_checksum, { "Checksum", "v5dl.checksum", FT_UINT16, BASE_HEX, - NULL, 0x0, "Details at: http://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html", HFILL }}, + NULL, 0x0, "Details at: https://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html", HFILL }}, { &hf_v5dl_checksum_status, { "Checksum Status", "v5dl.checksum.status", FT_UINT8, BASE_NONE, @@ -414,7 +414,7 @@ proto_reg_handoff_v5dl(void) } /* - * Editor modelines - http://www.wireshark.org/tools/modelines.html + * Editor modelines - https://www.wireshark.org/tools/modelines.html * * Local variables: * c-basic-offset: 8 diff --git a/epan/oids.c b/epan/oids.c index 400f7b8ac6..71c0329839 100644 --- a/epan/oids.c +++ b/epan/oids.c @@ -593,7 +593,7 @@ static void register_mibs(void) { report_failure("Stopped processing module %s due to " "error(s) to prevent potential crash in libsmi.\n" "Module's conformance level: %d.\n" - "See details at: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560325\n", + "See details at: https://bugs.debian.org/560325\n", smiModule->name, smiModule->conformance); } continue; diff --git a/packaging/wix/Wireshark.wxs b/packaging/wix/Wireshark.wxs index a74a488636..98e35335d2 100644 --- a/packaging/wix/Wireshark.wxs +++ b/packaging/wix/Wireshark.wxs @@ -13,7 +13,7 @@ .ico file instead of pointing to wireshark.exe. --> - + diff --git a/packaging/wix/WiresharkOptionsDlg.wxs b/packaging/wix/WiresharkOptionsDlg.wxs index 42f865f3cb..1b55dbb61a 100644 --- a/packaging/wix/WiresharkOptionsDlg.wxs +++ b/packaging/wix/WiresharkOptionsDlg.wxs @@ -16,7 +16,7 @@ - Download Npcap (recommended)]]> + Download Npcap (recommended)]]> @@ -26,7 +26,7 @@ - Download USBPcap (experimental)]]> + Download USBPcap (experimental)]]> diff --git a/pdml2html.xsl b/pdml2html.xsl index 02b77e0c22..8bac7f1aee 100644 --- a/pdml2html.xsl +++ b/pdml2html.xsl @@ -100,7 +100,7 @@ poor man's Wireshark - +