Преглед на файлове

net/hosts: Add onion note about Arti.

parazyd преди 3 години
родител
ревизия
949b0bb1e9
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/net/hosts.rs

+ 1 - 1
src/net/hosts.rs

@@ -282,7 +282,7 @@ fn filter_non_resolving(connection_addr: Url, input_addrs: HashMap<Url, Vec<IpAd
 
 /// Validate a given .onion address. Currently it just checks that the
 /// length and encoding are ok, and does not do any deeper check. Should
-/// be fixed in the future.
+/// be fixed in the future when arti is ready.
 fn is_valid_onion(onion: &str) -> bool {
     let onion = match onion.strip_suffix(".onion") {
         Some(s) => s,