(value: u32)
| 1227 | } |
| 1228 | |
| 1229 | fn to_u16(value: u32) -> u16 { |
| 1230 | u16::try_from(value.min(u32::from(u16::MAX))).unwrap_or(u16::MAX) |
| 1231 | } |
| 1232 | |
| 1233 | /// Check whether a host string refers to a loopback address. |
| 1234 | /// |
no outgoing calls
no test coverage detected