diff options
author | George Kadianakis <desnacked@riseup.net> | 2019-05-30 15:58:20 +0300 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2019-11-18 19:16:01 +0200 |
commit | 00fdaaee1e3cdfe40230a866c497d3648c43940c (patch) | |
tree | 684128731393d2cd563098e9290d286313d0b0ed /src/test/test_hs_control.c | |
parent | d28b6792cb99f25d42607eb46985ac4553013dd8 (diff) | |
download | tor-00fdaaee1e3cdfe40230a866c497d3648c43940c.tar.gz tor-00fdaaee1e3cdfe40230a866c497d3648c43940c.zip |
control-port: Implement ONION_CLIENT_AUTH_ADD.
Diffstat (limited to 'src/test/test_hs_control.c')
-rw-r--r-- | src/test/test_hs_control.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/test_hs_control.c b/src/test/test_hs_control.c index 7cedc987bb..3eadd49662 100644 --- a/src/test/test_hs_control.c +++ b/src/test/test_hs_control.c @@ -187,9 +187,18 @@ test_hs_desc_event(void *arg) tor_free(expected_msg); } +static void +test_hs_control_onion_client_auth_add(void *arg) +{ + (void) arg; +} + struct testcase_t hs_control_tests[] = { { "hs_desc_event", test_hs_desc_event, TT_FORK, NULL, NULL }, + { "hs_control_onion_client_auth_add", + test_hs_control_onion_client_auth_add, TT_FORK, + NULL, NULL }, END_OF_TESTCASES }; |