Loading src/feature/control/control_hs.c +1 −1 Original line number Diff line number Diff line Loading @@ -148,7 +148,7 @@ handle_control_onion_client_auth_add(control_connection_t *conn, case REGISTER_SUCCESS_ALREADY_EXISTS: control_printf_endreply(conn, 251,"Client for onion existed and replaced"); break; case REGISTER_SUCCESS_ALSO_DECRYPTED: case REGISTER_SUCCESS_AND_DECRYPTED: control_printf_endreply(conn, 252,"Registered client and decrypted desc"); break; case REGISTER_SUCCESS: Loading src/feature/hs/hs_client.c +1 −1 Original line number Diff line number Diff line Loading @@ -1480,7 +1480,7 @@ hs_client_register_auth_credentials(hs_client_service_authorization_t *creds) /** Now that we set the new credentials, also try to decrypt any cached * descriptors. */ if (hs_cache_client_new_auth_parse(&service_identity_pk)) { retval = REGISTER_SUCCESS_ALSO_DECRYPTED; retval = REGISTER_SUCCESS_AND_DECRYPTED; } return retval; Loading src/feature/hs/hs_client.h +1 −1 Original line number Diff line number Diff line Loading @@ -40,7 +40,7 @@ typedef enum { REGISTER_SUCCESS_ALREADY_EXISTS, /* We successfuly registered these credentials, and also decrypted a cached * descriptor. */ REGISTER_SUCCESS_ALSO_DECRYPTED, REGISTER_SUCCESS_AND_DECRYPTED, /* We failed to register these credentials, because of a bad HS address. */ REGISTER_FAIL_BAD_ADDRESS, } hs_client_register_auth_status_t; Loading Loading
src/feature/control/control_hs.c +1 −1 Original line number Diff line number Diff line Loading @@ -148,7 +148,7 @@ handle_control_onion_client_auth_add(control_connection_t *conn, case REGISTER_SUCCESS_ALREADY_EXISTS: control_printf_endreply(conn, 251,"Client for onion existed and replaced"); break; case REGISTER_SUCCESS_ALSO_DECRYPTED: case REGISTER_SUCCESS_AND_DECRYPTED: control_printf_endreply(conn, 252,"Registered client and decrypted desc"); break; case REGISTER_SUCCESS: Loading
src/feature/hs/hs_client.c +1 −1 Original line number Diff line number Diff line Loading @@ -1480,7 +1480,7 @@ hs_client_register_auth_credentials(hs_client_service_authorization_t *creds) /** Now that we set the new credentials, also try to decrypt any cached * descriptors. */ if (hs_cache_client_new_auth_parse(&service_identity_pk)) { retval = REGISTER_SUCCESS_ALSO_DECRYPTED; retval = REGISTER_SUCCESS_AND_DECRYPTED; } return retval; Loading
src/feature/hs/hs_client.h +1 −1 Original line number Diff line number Diff line Loading @@ -40,7 +40,7 @@ typedef enum { REGISTER_SUCCESS_ALREADY_EXISTS, /* We successfuly registered these credentials, and also decrypted a cached * descriptor. */ REGISTER_SUCCESS_ALSO_DECRYPTED, REGISTER_SUCCESS_AND_DECRYPTED, /* We failed to register these credentials, because of a bad HS address. */ REGISTER_FAIL_BAD_ADDRESS, } hs_client_register_auth_status_t; Loading