diff options
author | Qingping Hou <dave2008713@gmail.com> | 2014-02-04 19:33:48 -0500 |
---|---|---|
committer | Qingping Hou <dave2008713@gmail.com> | 2014-02-06 16:13:55 -0500 |
commit | bf66ff915aa3b97922c3313542ed2f2f554d9c57 (patch) | |
tree | af3e53609c0e2954a394887f12d8d2241fc940ed /src/or/rendclient.c | |
parent | 2d41cab1502666eaace21f10385964737d246388 (diff) | |
download | tor-bf66ff915aa3b97922c3313542ed2f2f554d9c57.tar.gz tor-bf66ff915aa3b97922c3313542ed2f2f554d9c57.zip |
fix longname returned in HS_DESC control events
According to control spec, longname should not contain any spaces and is
consists only of identy_digest + nickname
added two functions:
* node_get_verbose_nickname_by_id()
* node_describe_longname_by_id()
Diffstat (limited to 'src/or/rendclient.c')
-rw-r--r-- | src/or/rendclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c index de28bd1fc5..4de010182c 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -696,7 +696,7 @@ directory_get_from_hs_dir(const char *desc_id, const rend_data_t *rend_query) escaped_safe_str_client(descriptor_cookie_base64)), routerstatus_describe(hs_dir)); control_event_hs_descriptor_requested(rend_query, - routerstatus_describe(hs_dir), + hs_dir->identity_digest, desc_id_base32); return 1; } |