Tor
0.4.7.0-alpha-dev
|
Header file for routerinfo.c. More...
Go to the source code of this file.
Functions | |
int | router_get_orport (const routerinfo_t *router, tor_addr_port_t *addr_port_out, int family) |
int | router_has_orport (const routerinfo_t *router, const tor_addr_port_t *orport) |
const struct ed25519_public_key_t * | routerinfo_get_ed25519_id (const routerinfo_t *ri) |
smartlist_t * | router_get_all_orports (const routerinfo_t *ri) |
const char * | router_purpose_to_string (uint8_t p) |
uint8_t | router_purpose_from_string (const char *s) |
Header file for routerinfo.c.
Definition in file routerinfo.h.
smartlist_t* router_get_all_orports | ( | const routerinfo_t * | ri | ) |
Return a smartlist of tor_addr_port_t's with all the OR ports of ri. Note that freeing of the items in the list as well as the smartlist itself is the callers responsibility.
Definition at line 68 of file routerinfo.c.
Referenced by get_configured_bridge_by_routerinfo().
int router_get_orport | ( | const routerinfo_t * | router, |
tor_addr_port_t * | ap_out, | ||
int | family | ||
) |
Copy the OR port (IP address and TCP port) for router and family into *ap_out.
If the requested ORPort does not exist, sets *ap_out to the null address and port, and returns -1. Otherwise, returns 0.
Definition at line 27 of file routerinfo.c.
Referenced by have_orport_for_family(), and router_orport_found_reachable().
uint8_t router_purpose_from_string | ( | const char * | s | ) |
Given a string, convert it to a router purpose.
Definition at line 113 of file routerinfo.c.
Referenced by handle_control_postdescriptor(), and networkstatus_getinfo_by_purpose().
const char* router_purpose_to_string | ( | uint8_t | p | ) |
Given a router purpose, convert it to a string. Don't call this on ROUTER_PURPOSE_UNKNOWN: The whole point of that value is that we don't know its string representation.
Definition at line 98 of file routerinfo.c.
Referenced by router_load_single_router().
const struct ed25519_public_key_t* routerinfo_get_ed25519_id | ( | const routerinfo_t * | ri | ) |
Return the Ed25519 identity key for this routerinfo, or NULL if it doesn't have one.
Definition at line 82 of file routerinfo.c.
Referenced by router_describe().