mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
declare the prototypes better
svn:r888
This commit is contained in:
parent
c25fbd2676
commit
6a968495b1
@ -625,7 +625,7 @@ int connection_edge_finished_flushing(connection_t *conn);
|
|||||||
int connection_edge_package_raw_inbuf(connection_t *conn);
|
int connection_edge_package_raw_inbuf(connection_t *conn);
|
||||||
|
|
||||||
void connection_exit_connect(connection_t *conn);
|
void connection_exit_connect(connection_t *conn);
|
||||||
|
int connection_ap_can_use_exit(connection_t *conn, routerinfo_t *exit);
|
||||||
void connection_ap_attach_pending(void);
|
void connection_ap_attach_pending(void);
|
||||||
|
|
||||||
extern uint64_t stats_n_data_cells_packaged;
|
extern uint64_t stats_n_data_cells_packaged;
|
||||||
|
@ -25,7 +25,14 @@ struct directory_token;
|
|||||||
typedef struct directory_token directory_token_t;
|
typedef struct directory_token directory_token_t;
|
||||||
|
|
||||||
/* static function prototypes */
|
/* static function prototypes */
|
||||||
static int router_add_exit_policy_from_string(routerinfo_t *router, char *s);
|
static int router_set_routerlist_from_string(char *s);
|
||||||
|
static int
|
||||||
|
router_get_list_from_string_impl(char **s, routerlist_t **dest,
|
||||||
|
int n_good_nicknames,
|
||||||
|
const char **good_nickname_lst);
|
||||||
|
static int
|
||||||
|
router_get_routerlist_from_directory_impl(char *s, routerlist_t **dest,
|
||||||
|
crypto_pk_env_t *pkey);
|
||||||
static int router_add_exit_policy(routerinfo_t *router,
|
static int router_add_exit_policy(routerinfo_t *router,
|
||||||
directory_token_t *tok);
|
directory_token_t *tok);
|
||||||
static int router_resolve_routerlist(routerlist_t *dir);
|
static int router_resolve_routerlist(routerlist_t *dir);
|
||||||
|
Loading…
Reference in New Issue
Block a user