mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-28 20:16:58 +03:00
257 lines
6.8 KiB
Plaintext
257 lines
6.8 KiB
Plaintext
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:8:13
|
|
|
|
|
LL | let _ = Ipv4Addr::new(127, 0, 0, 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::ip-constant` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::ip_constant)]`
|
|
help: use
|
|
|
|
|
LL - let _ = Ipv4Addr::new(127, 0, 0, 1);
|
|
LL + let _ = Ipv4Addr::LOCALHOST;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:10:13
|
|
|
|
|
LL | let _ = Ipv4Addr::new(255, 255, 255, 255);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = Ipv4Addr::new(255, 255, 255, 255);
|
|
LL + let _ = Ipv4Addr::BROADCAST;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:12:13
|
|
|
|
|
LL | let _ = Ipv4Addr::new(0, 0, 0, 0);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = Ipv4Addr::new(0, 0, 0, 0);
|
|
LL + let _ = Ipv4Addr::UNSPECIFIED;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:16:13
|
|
|
|
|
LL | let _ = Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1);
|
|
LL + let _ = Ipv6Addr::LOCALHOST;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:18:13
|
|
|
|
|
LL | let _ = Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0);
|
|
LL + let _ = Ipv6Addr::UNSPECIFIED;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:24:13
|
|
|
|
|
LL | let _ = net::Ipv4Addr::new(127, 0, 0, 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = net::Ipv4Addr::new(127, 0, 0, 1);
|
|
LL + let _ = net::Ipv4Addr::LOCALHOST;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:26:13
|
|
|
|
|
LL | let _ = net::Ipv4Addr::new(255, 255, 255, 255);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = net::Ipv4Addr::new(255, 255, 255, 255);
|
|
LL + let _ = net::Ipv4Addr::BROADCAST;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:28:13
|
|
|
|
|
LL | let _ = net::Ipv4Addr::new(0, 0, 0, 0);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = net::Ipv4Addr::new(0, 0, 0, 0);
|
|
LL + let _ = net::Ipv4Addr::UNSPECIFIED;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:31:13
|
|
|
|
|
LL | let _ = net::Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = net::Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1);
|
|
LL + let _ = net::Ipv6Addr::LOCALHOST;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:33:13
|
|
|
|
|
LL | let _ = net::Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = net::Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0);
|
|
LL + let _ = net::Ipv6Addr::UNSPECIFIED;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:38:13
|
|
|
|
|
LL | let _ = std::net::Ipv4Addr::new(127, 0, 0, 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = std::net::Ipv4Addr::new(127, 0, 0, 1);
|
|
LL + let _ = std::net::Ipv4Addr::LOCALHOST;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:40:13
|
|
|
|
|
LL | let _ = std::net::Ipv4Addr::new(255, 255, 255, 255);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = std::net::Ipv4Addr::new(255, 255, 255, 255);
|
|
LL + let _ = std::net::Ipv4Addr::BROADCAST;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:42:13
|
|
|
|
|
LL | let _ = std::net::Ipv4Addr::new(0, 0, 0, 0);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = std::net::Ipv4Addr::new(0, 0, 0, 0);
|
|
LL + let _ = std::net::Ipv4Addr::UNSPECIFIED;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:45:13
|
|
|
|
|
LL | let _ = std::net::Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = std::net::Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1);
|
|
LL + let _ = std::net::Ipv6Addr::LOCALHOST;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:47:13
|
|
|
|
|
LL | let _ = std::net::Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = std::net::Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0);
|
|
LL + let _ = std::net::Ipv6Addr::UNSPECIFIED;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:52:13
|
|
|
|
|
LL | let _ = (std::net::Ipv4Addr::new(127, 0, 0, 1));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = (std::net::Ipv4Addr::new(127, 0, 0, 1));
|
|
LL + let _ = std::net::Ipv4Addr::LOCALHOST;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:54:13
|
|
|
|
|
LL | let _ = (std::net::Ipv4Addr::new(255, 255, 255, 255));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = (std::net::Ipv4Addr::new(255, 255, 255, 255));
|
|
LL + let _ = std::net::Ipv4Addr::BROADCAST;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:56:13
|
|
|
|
|
LL | let _ = (std::net::Ipv4Addr::new(0, 0, 0, 0));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = (std::net::Ipv4Addr::new(0, 0, 0, 0));
|
|
LL + let _ = std::net::Ipv4Addr::UNSPECIFIED;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:59:13
|
|
|
|
|
LL | let _ = (std::net::Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = (std::net::Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1));
|
|
LL + let _ = std::net::Ipv6Addr::LOCALHOST;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:61:13
|
|
|
|
|
LL | let _ = (std::net::Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = (std::net::Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0));
|
|
LL + let _ = std::net::Ipv6Addr::UNSPECIFIED;
|
|
|
|
|
|
|
error: hand-coded well-known IP address
|
|
--> tests/ui/ip_constant.rs:105:13
|
|
|
|
|
LL | let _ = Ipv4Addr::new(126 + 1, 0, 0, 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use
|
|
|
|
|
LL - let _ = Ipv4Addr::new(126 + 1, 0, 0, 1);
|
|
LL + let _ = Ipv4Addr::LOCALHOST;
|
|
|
|
|
|
|
error: aborting due to 21 previous errors
|
|
|