From f661d856fd83cb978320bf55ba5dfdee55a666b8 Mon Sep 17 00:00:00 2001 From: David Goulet Date: Thu, 12 Jul 2018 09:21:52 -0400 Subject: hs: Remove rend_client_allow_non_anonymous_connection By removing Tor2Web, there is no way a client can be non anonymous so we remove that function and the callsites. Signed-off-by: David Goulet --- src/feature/rend/rendcommon.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'src/feature/rend/rendcommon.c') diff --git a/src/feature/rend/rendcommon.c b/src/feature/rend/rendcommon.c index 567cc5c1e4..6e19d56b30 100644 --- a/src/feature/rend/rendcommon.c +++ b/src/feature/rend/rendcommon.c @@ -979,16 +979,11 @@ rend_auth_decode_cookie(const char *cookie_in, uint8_t *cookie_out, /* Is this a rend client or server that allows direct (non-anonymous) * connections? - * Clients must be specifically compiled and configured in this mode. - * Onion services can be configured to start in this mode. - * Prefer rend_client_allow_non_anonymous_connection() or - * rend_service_allow_non_anonymous_connection() whenever possible, so that - * checks are specific to Single Onion Services. */ + * Onion services can be configured to start in this mode for single onion. */ int rend_allow_non_anonymous_connection(const or_options_t* options) { - return (rend_client_allow_non_anonymous_connection(options) - || rend_service_allow_non_anonymous_connection(options)); + return rend_service_allow_non_anonymous_connection(options); } /* Is this a rend client or server in non-anonymous mode? -- cgit v1.2.3-54-g00ecf