aboutsummaryrefslogtreecommitdiff
path: root/src/feature/control/control_hs.h
diff options
context:
space:
mode:
authorGeorge Kadianakis <desnacked@riseup.net>2019-06-03 15:43:54 +0300
committerGeorge Kadianakis <desnacked@riseup.net>2019-11-18 19:18:49 +0200
commit8330b4dc2a18befa0eda8e48abb7f6e151596562 (patch)
treec9310b17d5755ccd34a5120f3d3d26df430fd982 /src/feature/control/control_hs.h
parent46f441502227665c25aa0ad8710bdf8487193904 (diff)
downloadtor-8330b4dc2a18befa0eda8e48abb7f6e151596562.tar.gz
tor-8330b4dc2a18befa0eda8e48abb7f6e151596562.zip
control-port: Implement ONION_CLIENT_AUTH_REMOVE.
Diffstat (limited to 'src/feature/control/control_hs.h')
-rw-r--r--src/feature/control/control_hs.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/feature/control/control_hs.h b/src/feature/control/control_hs.h
index 1fcd7de36c..067c7dc47f 100644
--- a/src/feature/control/control_hs.h
+++ b/src/feature/control/control_hs.h
@@ -13,12 +13,16 @@
struct control_cmd_syntax_t;
-extern const char *onion_client_auth_add_keywords[];
extern const struct control_cmd_syntax_t onion_client_auth_add_syntax;
+extern const struct control_cmd_syntax_t onion_client_auth_remove_syntax;
int
handle_control_onion_client_auth_add(control_connection_t *conn,
const control_cmd_args_t *args);
+int
+handle_control_onion_client_auth_remove(control_connection_t *conn,
+ const control_cmd_args_t *args);
+
#endif