From: Jason Ish Date: Wed, 17 Nov 2021 01:34:11 +0000 (-0600) Subject: dhcp: fix url in comment X-Git-Tag: suricata-7.0.0-beta1~1191 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb6cc6293717e10f881edd6713fb8dc6ef78d3b7;p=thirdparty%2Fsuricata.git dhcp: fix url in comment rustdoc was complaining about the format of the URL in a comment while trying to generate documentation. Convert the comment to a non-rustdoc comment for now to satisfy rustdoc. --- diff --git a/rust/src/dhcp/dhcp.rs b/rust/src/dhcp/dhcp.rs index abbca1a2a8..9fd1878b23 100644 --- a/rust/src/dhcp/dhcp.rs +++ b/rust/src/dhcp/dhcp.rs @@ -56,8 +56,8 @@ pub const DHCP_TYPE_NAK: u8 = 6; pub const DHCP_TYPE_RELEASE: u8 = 7; pub const DHCP_TYPE_INFORM: u8 = 8; -/// DHCP parameter types. -/// https://www.iana.org/assignments/bootp-dhcp-parameters/bootp-dhcp-parameters.txt +// DHCP parameter types. +// https://www.iana.org/assignments/bootp-dhcp-parameters/bootp-dhcp-parameters.txt pub const DHCP_PARAM_SUBNET_MASK: u8 = 1; pub const DHCP_PARAM_ROUTER: u8 = 3; pub const DHCP_PARAM_DNS_SERVER: u8 = 6;