Skip to content

Commit 3ce5b27

Browse files
committed
WIP: More .anon -> .anyone updates
1 parent 2cdac78 commit 3ce5b27

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/core/or/connection_edge.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1716,7 +1716,7 @@ parse_extended_hostname(char *address, hostname_type_t *type_out)
17161716
*type_out = EXIT_HOSTNAME; /* .exit */
17171717
goto success;
17181718
}
1719-
if (strcmp(s+1,"anon")) {
1719+
if (strcmp(s+1,"anyone")) {
17201720
*type_out = NORMAL_HOSTNAME; /* neither .exit nor .anyone, thus normal */
17211721
goto success;
17221722
}

src/feature/hs/hs_service.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
static const char fname_keyfile_prefix[] = "hs_ed25519";
101101
static const char dname_client_pubkeys[] = "authorized_clients";
102102
static const char fname_hostname[] = "hostname";
103-
static const char address_tld[] = "anon";
103+
static const char address_tld[] = "anyone";
104104

105105
/** Staging list of service object. When configuring service, we add them to
106106
* this list considered a staging area and they will get added to our global

0 commit comments

Comments
 (0)