mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
make router_get_by_nickname consider this router.
svn:r1497
This commit is contained in:
@@ -977,6 +977,7 @@ void router_retry_connections(void);
|
||||
void router_upload_dir_desc_to_dirservers(void);
|
||||
void router_post_to_dirservers(uint8_t purpose, const char *payload, int payload_len);
|
||||
int router_compare_to_my_exit_policy(connection_t *conn);
|
||||
routerinfo_t *router_get_my_routerinfo(void);
|
||||
const char *router_get_my_descriptor(void);
|
||||
int router_rebuild_descriptor(void);
|
||||
int router_dump_router_to_string(char *s, int maxlen, routerinfo_t *router,
|
||||
|
||||
@@ -320,6 +320,18 @@ int router_compare_to_my_exit_policy(connection_t *conn) {
|
||||
|
||||
}
|
||||
|
||||
routerinfo_t *router_get_my_routerinfo(void)
|
||||
{
|
||||
if (!options.ORPort)
|
||||
return NULL;
|
||||
|
||||
if (!desc_routerinfo) {
|
||||
if (router_rebuild_descriptor())
|
||||
return NULL;
|
||||
}
|
||||
return desc_routerinfo;
|
||||
}
|
||||
|
||||
const char *router_get_my_descriptor(void) {
|
||||
if (!desc_routerinfo) {
|
||||
if (router_rebuild_descriptor())
|
||||
|
||||
@@ -314,6 +314,10 @@ routerinfo_t *router_get_by_nickname(char *nickname)
|
||||
if (0 == strcmp(router->nickname, nickname))
|
||||
return router;
|
||||
}
|
||||
router = router_get_my_routerinfo();
|
||||
if (router && 0 == strcmp(router->nickname, nickname))
|
||||
return router;
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user