diff options
author | George Kadianakis <desnacked@riseup.net> | 2019-06-03 14:25:38 +0300 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2019-11-18 19:19:00 +0200 |
commit | db6a48b6bf65f817cfe9318f60616a67d4a8adfe (patch) | |
tree | 075eb4f4fe5a5e3a4f8c90586de746ac41e02fa0 /src/feature/hs/hs_client.h | |
parent | ee4b2287c6426470db1f93043841bbc6bbcb2df9 (diff) | |
download | tor-db6a48b6bf65f817cfe9318f60616a67d4a8adfe.tar.gz tor-db6a48b6bf65f817cfe9318f60616a67d4a8adfe.zip |
control-port: Implement ONION_CLIENT_AUTH_VIEW.
Diffstat (limited to 'src/feature/hs/hs_client.h')
-rw-r--r-- | src/feature/hs/hs_client.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/feature/hs/hs_client.h b/src/feature/hs/hs_client.h index 459c19db58..b0122aa14d 100644 --- a/src/feature/hs/hs_client.h +++ b/src/feature/hs/hs_client.h @@ -76,6 +76,8 @@ hs_client_register_auth_credentials(hs_client_service_authorization_t *creds); hs_client_removal_auth_status_t hs_client_remove_auth_credentials(const char *hsaddress); +digest256map_t *get_hs_client_auths_map(void); + #define client_service_authorization_free(auth) \ FREE_AND_NULL(hs_client_service_authorization_t, \ client_service_authorization_free_, (auth)) @@ -156,7 +158,6 @@ STATIC void retry_all_socks_conn_waiting_for_desc(void); #ifdef TOR_UNIT_TESTS -STATIC digest256map_t *get_hs_client_auths_map(void); STATIC void set_hs_client_auths_map(digest256map_t *map); #endif /* defined(TOR_UNIT_TESTS) */ |