diff options
author | George Kadianakis <desnacked@riseup.net> | 2019-06-03 15:43:54 +0300 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2019-11-18 19:18:49 +0200 |
commit | 8330b4dc2a18befa0eda8e48abb7f6e151596562 (patch) | |
tree | c9310b17d5755ccd34a5120f3d3d26df430fd982 /src/feature/control/control_hs.h | |
parent | 46f441502227665c25aa0ad8710bdf8487193904 (diff) | |
download | tor-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.h | 6 |
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 |