diff options
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 9b1f60e42..9b77e3801 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -1442,6 +1442,15 @@ router_get_by_descriptor_digest(const char *digest) return digestmap_get(routerlist->desc_digest_map, digest); } +/** DOCDOC */ +signed_descriptor_t * +extrainfo_get_by_descriptor_digest(const char *digest) +{ + /* XXXX020 implement me. */ + (void)digest; + return NULL; +} + /** Return a pointer to the signed textual representation of a descriptor. * The returned string is not guaranteed to be NUL-terminated: the string's * length will be in desc-\>signed_descriptor_len. */ |