diff options
author | Nick Mathewson <nickm@torproject.org> | 2010-10-21 11:18:16 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-10-21 11:18:16 -0400 |
commit | bd1a69422190625c31013c2b7b73031e080722ab (patch) | |
tree | 3bf7068fbe46150fa462fa4aedadaa192ed69a86 /src/or/nodelist.h | |
parent | f32140238fc39cda3a292a4f67651044b7791423 (diff) | |
download | tor-bd1a69422190625c31013c2b7b73031e080722ab.tar.gz tor-bd1a69422190625c31013c2b7b73031e080722ab.zip |
Add a node_get_by_hex_id().
Diffstat (limited to 'src/or/nodelist.h')
-rw-r--r-- | src/or/nodelist.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/nodelist.h b/src/or/nodelist.h index 23f4a16427..d85d3eb417 100644 --- a/src/or/nodelist.h +++ b/src/or/nodelist.h @@ -14,6 +14,7 @@ node_t *node_get_mutable_by_id(const char *identity_digest); const node_t *node_get_by_id(const char *identity_digest); +const node_t *node_get_by_hex_id(const char *identity_digest); node_t *nodelist_add_routerinfo(routerinfo_t *ri); node_t *nodelist_add_microdesc(microdesc_t *md); void nodelist_set_consensus(networkstatus_t *ns); |