summaryrefslogtreecommitdiff
path: root/src/feature/rend/rendclient.c
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2018-07-12 09:23:57 -0400
committerNick Mathewson <nickm@torproject.org>2018-08-28 16:01:57 -0400
commit8f13c3d3ed842d8db13bcf9ca6393dbe8e5781e3 (patch)
tree9245762890f4b0d6d5fb2044acead3868a0f2ecf /src/feature/rend/rendclient.c
parentf661d856fd83cb978320bf55ba5dfdee55a666b8 (diff)
downloadtor-8f13c3d3ed842d8db13bcf9ca6393dbe8e5781e3.tar.gz
tor-8f13c3d3ed842d8db13bcf9ca6393dbe8e5781e3.zip
hs: Remove rend_client_non_anonymous_mode_enabled
The removal of Tor2Web made this function useless. Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/feature/rend/rendclient.c')
-rw-r--r--src/feature/rend/rendclient.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/feature/rend/rendclient.c b/src/feature/rend/rendclient.c
index 485ffa8be3..2c4cec65b1 100644
--- a/src/feature/rend/rendclient.c
+++ b/src/feature/rend/rendclient.c
@@ -1218,16 +1218,3 @@ rend_parse_service_authorization(const or_options_t *options,
}
return res;
}
-
-/* At compile-time, was non-anonymous mode enabled via
- * NON_ANONYMOUS_MODE_ENABLED ? */
-int
-rend_client_non_anonymous_mode_enabled(const or_options_t *options)
-{
- (void)options;
-#ifdef NON_ANONYMOUS_MODE_ENABLED
- return 1;
-#else
- return 0;
-#endif /* defined(NON_ANONYMOUS_MODE_ENABLED) */
-}