]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Create networkstatus.h
authorSebastian Hahn <sebastian@torproject.org>
Fri, 23 Jul 2010 18:18:55 +0000 (20:18 +0200)
committerSebastian Hahn <sebastian@torproject.org>
Tue, 27 Jul 2010 05:58:16 +0000 (07:58 +0200)
17 files changed:
src/or/circuitbuild.c
src/or/circuitlist.c
src/or/config.c
src/or/connection_or.c
src/or/control.c
src/or/directory.c
src/or/dirserv.c
src/or/dirvote.c
src/or/main.c
src/or/networkstatus.c
src/or/networkstatus.h [new file with mode: 0644]
src/or/or.h
src/or/relay.c
src/or/rendservice.c
src/or/routerlist.c
src/or/routerparse.c
src/test/test_dir.c

index 71eb643791a5a6ff3e63783585712e2aeb17044b..5b360807d5be866144b980c6b9da48b592932d51 100644 (file)
@@ -22,6 +22,7 @@
 #include "control.h"
 #include "directory.h"
 #include "main.h"
+#include "networkstatus.h"
 #include "router.h"
 #include "routerlist.h"
 #include "crypto.h"
index d2212dc28533deb8468d7b80d37a93c2fceb1ad2..b8c2737663166ff9f93486801827e32a10a5aca0 100644 (file)
@@ -18,6 +18,7 @@
 #include "connection_edge.h"
 #include "connection_or.h"
 #include "control.h"
+#include "networkstatus.h"
 #include "rendclient.h"
 #include "rendcommon.h"
 #include "routerlist.h"
index 34acc4f8b941314b387cc18979e7c08a4b2ea56d..bfec2f41b47537a4be35288a42fd80e8810f90d9 100644 (file)
@@ -25,6 +25,7 @@
 #include "geoip.h"
 #include "hibernate.h"
 #include "main.h"
+#include "networkstatus.h"
 #include "rendclient.h"
 #include "rendservice.h"
 #include "router.h"
index 0ddd5f14f19b933a4b3962ed40c8f7fc9387b247..8ec52901c87dc388e224b35b302012f9f4fc8e11 100644 (file)
@@ -21,6 +21,7 @@
 #include "dirserv.h"
 #include "geoip.h"
 #include "main.h"
+#include "networkstatus.h"
 #include "router.h"
 #include "routerlist.h"
 
index e1073ab431d15af0b71ba49192962e45f509998b..5f5e45fd8831be799502da12ba4b2c994da7b310 100644 (file)
@@ -25,6 +25,7 @@
 #include "geoip.h"
 #include "hibernate.h"
 #include "main.h"
+#include "networkstatus.h"
 #include "router.h"
 #include "routerlist.h"
 
index 8c7bf4fcd8f69fdde7d3189ded72576316924d39..057961da862720c85cb0a6279d2bbc01ac279fa7 100644 (file)
@@ -15,6 +15,7 @@
 #include "dirvote.h"
 #include "geoip.h"
 #include "main.h"
+#include "networkstatus.h"
 #include "rendclient.h"
 #include "rendcommon.h"
 #include "router.h"
index 5f2c7891756f8c4dbb1e9c5676dc9302d528178e..d23542cf6086e86aabcc9c79c4029c88779193bc 100644 (file)
@@ -15,6 +15,7 @@
 #include "dirvote.h"
 #include "hibernate.h"
 #include "microdesc.h"
+#include "networkstatus.h"
 #include "router.h"
 #include "routerlist.h"
 
index 394029812ff6ac31f8883b75c066aa8a8724023b..5b53267ba5f1e03514620a9474a8f83e8a2f81f3 100644 (file)
@@ -10,6 +10,7 @@
 #include "dirserv.h"
 #include "dirvote.h"
 #include "microdesc.h"
+#include "networkstatus.h"
 #include "router.h"
 #include "routerlist.h"
 
index 8e4f35cc03a4971d83a6ed46b00de53a60a4b780..18525f03841902cdd0c2bfb2f2319c2fa49f00d8 100644 (file)
@@ -32,6 +32,7 @@
 #include "hibernate.h"
 #include "main.h"
 #include "microdesc.h"
+#include "networkstatus.h"
 #include "rendclient.h"
 #include "rendcommon.h"
 #include "rendservice.h"
index 98af3a2843e2ba10ecf76b61ef80a03fa4b1647e..bd986609ff2d4bd9b9cf102ab5727b0495945d59 100644 (file)
@@ -18,6 +18,7 @@
 #include "directory.h"
 #include "dirserv.h"
 #include "dirvote.h"
+#include "networkstatus.h"
 #include "router.h"
 #include "routerlist.h"
 
diff --git a/src/or/networkstatus.h b/src/or/networkstatus.h
new file mode 100644 (file)
index 0000000..4059dea
--- /dev/null
@@ -0,0 +1,101 @@
+/* Copyright (c) 2001 Matej Pfajfar.
+ * Copyright (c) 2001-2004, Roger Dingledine.
+ * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
+ * Copyright (c) 2007-2010, The Tor Project, Inc. */
+/* See LICENSE for licensing information */
+
+/**
+ * \file networkstatus.h
+ * \brief Header file for networkstatus.c.
+ **/
+
+#ifndef _TOR_NETWORKSTATUS_H
+#define _TOR_NETWORKSTATUS_H
+
+/** How old do we allow a v2 network-status to get before removing it
+ * completely? */
+#define MAX_NETWORKSTATUS_AGE (10*24*60*60)
+
+void networkstatus_reset_warnings(void);
+void networkstatus_reset_download_failures(void);
+int router_reload_v2_networkstatus(void);
+int router_reload_consensus_networkstatus(void);
+void routerstatus_free(routerstatus_t *rs);
+void networkstatus_v2_free(networkstatus_v2_t *ns);
+void networkstatus_vote_free(networkstatus_t *ns);
+networkstatus_voter_info_t *networkstatus_get_voter_by_id(
+                                       networkstatus_t *vote,
+                                       const char *identity);
+int networkstatus_check_consensus_signature(networkstatus_t *consensus,
+                                            int warn);
+int networkstatus_check_document_signature(const networkstatus_t *consensus,
+                                           document_signature_t *sig,
+                                           const authority_cert_t *cert);
+char *networkstatus_get_cache_filename(const char *identity_digest);
+int router_set_networkstatus_v2(const char *s, time_t arrived_at,
+                             v2_networkstatus_source_t source,
+                             smartlist_t *requested_fingerprints);
+void networkstatus_v2_list_clean(time_t now);
+int compare_digest_to_routerstatus_entry(const void *_key,
+                                         const void **_member);
+routerstatus_t *networkstatus_v2_find_entry(networkstatus_v2_t *ns,
+                                         const char *digest);
+routerstatus_t *networkstatus_vote_find_entry(networkstatus_t *ns,
+                                              const char *digest);
+int networkstatus_vote_find_entry_idx(networkstatus_t *ns,
+                                      const char *digest, int *found_out);
+const smartlist_t *networkstatus_get_v2_list(void);
+download_status_t *router_get_dl_status_by_descriptor_digest(const char *d);
+routerstatus_t *router_get_consensus_status_by_id(const char *digest);
+routerstatus_t *router_get_consensus_status_by_descriptor_digest(
+                                                        const char *digest);
+routerstatus_t *router_get_consensus_status_by_nickname(const char *nickname,
+                                                       int warn_if_unnamed);
+const char *networkstatus_get_router_digest_by_nickname(const char *nickname);
+int networkstatus_nickname_is_unnamed(const char *nickname);
+void networkstatus_consensus_download_failed(int status_code);
+void update_consensus_networkstatus_fetch_time(time_t now);
+int should_delay_dir_fetches(or_options_t *options);
+void update_networkstatus_downloads(time_t now);
+void update_certificate_downloads(time_t now);
+int consensus_is_waiting_for_certs(void);
+networkstatus_v2_t *networkstatus_v2_get_by_digest(const char *digest);
+networkstatus_t *networkstatus_get_latest_consensus(void);
+networkstatus_t *networkstatus_get_live_consensus(time_t now);
+networkstatus_t *networkstatus_get_reasonably_live_consensus(time_t now);
+#define NSSET_FROM_CACHE 1
+#define NSSET_WAS_WAITING_FOR_CERTS 2
+#define NSSET_DONT_DOWNLOAD_CERTS 4
+#define NSSET_ACCEPT_OBSOLETE 8
+#define NSSET_REQUIRE_FLAVOR 16
+int networkstatus_set_current_consensus(const char *consensus,
+                                        const char *flavor,
+                                        unsigned flags);
+void networkstatus_note_certs_arrived(void);
+void routers_update_all_from_networkstatus(time_t now, int dir_version);
+void routerstatus_list_update_from_consensus_networkstatus(time_t now);
+void routers_update_status_from_consensus_networkstatus(smartlist_t *routers,
+                                                        int reset_failures);
+void signed_descs_update_status_from_consensus_networkstatus(
+                                                         smartlist_t *descs);
+
+char *networkstatus_getinfo_helper_single(routerstatus_t *rs);
+char *networkstatus_getinfo_by_purpose(const char *purpose_string, time_t now);
+void networkstatus_dump_bridge_status_to_file(time_t now);
+int32_t get_net_param_from_list(smartlist_t *net_params, const char *name,
+                                int default_val);
+int32_t networkstatus_get_param(networkstatus_t *ns, const char *param_name,
+                                int32_t default_val);
+int getinfo_helper_networkstatus(control_connection_t *conn,
+                                 const char *question, char **answer,
+                                 const char **errmsg);
+int32_t networkstatus_get_bw_weight(networkstatus_t *ns, const char *weight,
+                                    int32_t default_val);
+const char *networkstatus_get_flavor_name(consensus_flavor_t flav);
+int networkstatus_parse_flavor_name(const char *flavname);
+void document_signature_free(document_signature_t *sig);
+document_signature_t *document_signature_dup(const document_signature_t *sig);
+void networkstatus_free_all(void);
+
+#endif
+
index 2b3b3848059bf152c0cc01b3acfaa706b402e19b..4f1eab526b214c407e3a4e7ba05281560e53280a 100644 (file)
@@ -3274,10 +3274,6 @@ typedef struct microdesc_cache_t microdesc_cache_t;
 
 /********************************* networkstatus.c *********************/
 
-/** How old do we allow a v2 network-status to get before removing it
- * completely? */
-#define MAX_NETWORKSTATUS_AGE (10*24*60*60)
-
 /** Location where we found a v2 networkstatus. */
 typedef enum {
   NS_FROM_CACHE, NS_FROM_DIR_BY_FP, NS_FROM_DIR_ALL, NS_GENERATED
@@ -3297,87 +3293,6 @@ typedef enum version_status_t {
   VS_UNKNOWN, /**< We have no idea. */
 } version_status_t;
 
-void networkstatus_reset_warnings(void);
-void networkstatus_reset_download_failures(void);
-int router_reload_v2_networkstatus(void);
-int router_reload_consensus_networkstatus(void);
-void routerstatus_free(routerstatus_t *rs);
-void networkstatus_v2_free(networkstatus_v2_t *ns);
-void networkstatus_vote_free(networkstatus_t *ns);
-networkstatus_voter_info_t *networkstatus_get_voter_by_id(
-                                       networkstatus_t *vote,
-                                       const char *identity);
-int networkstatus_check_consensus_signature(networkstatus_t *consensus,
-                                            int warn);
-int networkstatus_check_document_signature(const networkstatus_t *consensus,
-                                           document_signature_t *sig,
-                                           const authority_cert_t *cert);
-char *networkstatus_get_cache_filename(const char *identity_digest);
-int router_set_networkstatus_v2(const char *s, time_t arrived_at,
-                             v2_networkstatus_source_t source,
-                             smartlist_t *requested_fingerprints);
-void networkstatus_v2_list_clean(time_t now);
-int compare_digest_to_routerstatus_entry(const void *_key,
-                                         const void **_member);
-routerstatus_t *networkstatus_v2_find_entry(networkstatus_v2_t *ns,
-                                         const char *digest);
-routerstatus_t *networkstatus_vote_find_entry(networkstatus_t *ns,
-                                              const char *digest);
-int networkstatus_vote_find_entry_idx(networkstatus_t *ns,
-                                      const char *digest, int *found_out);
-const smartlist_t *networkstatus_get_v2_list(void);
-download_status_t *router_get_dl_status_by_descriptor_digest(const char *d);
-routerstatus_t *router_get_consensus_status_by_id(const char *digest);
-routerstatus_t *router_get_consensus_status_by_descriptor_digest(
-                                                        const char *digest);
-routerstatus_t *router_get_consensus_status_by_nickname(const char *nickname,
-                                                       int warn_if_unnamed);
-const char *networkstatus_get_router_digest_by_nickname(const char *nickname);
-int networkstatus_nickname_is_unnamed(const char *nickname);
-void networkstatus_consensus_download_failed(int status_code);
-void update_consensus_networkstatus_fetch_time(time_t now);
-int should_delay_dir_fetches(or_options_t *options);
-void update_networkstatus_downloads(time_t now);
-void update_certificate_downloads(time_t now);
-int consensus_is_waiting_for_certs(void);
-networkstatus_v2_t *networkstatus_v2_get_by_digest(const char *digest);
-networkstatus_t *networkstatus_get_latest_consensus(void);
-networkstatus_t *networkstatus_get_live_consensus(time_t now);
-networkstatus_t *networkstatus_get_reasonably_live_consensus(time_t now);
-#define NSSET_FROM_CACHE 1
-#define NSSET_WAS_WAITING_FOR_CERTS 2
-#define NSSET_DONT_DOWNLOAD_CERTS 4
-#define NSSET_ACCEPT_OBSOLETE 8
-#define NSSET_REQUIRE_FLAVOR 16
-int networkstatus_set_current_consensus(const char *consensus,
-                                        const char *flavor,
-                                        unsigned flags);
-void networkstatus_note_certs_arrived(void);
-void routers_update_all_from_networkstatus(time_t now, int dir_version);
-void routerstatus_list_update_from_consensus_networkstatus(time_t now);
-void routers_update_status_from_consensus_networkstatus(smartlist_t *routers,
-                                                        int reset_failures);
-void signed_descs_update_status_from_consensus_networkstatus(
-                                                         smartlist_t *descs);
-
-char *networkstatus_getinfo_helper_single(routerstatus_t *rs);
-char *networkstatus_getinfo_by_purpose(const char *purpose_string, time_t now);
-void networkstatus_dump_bridge_status_to_file(time_t now);
-int32_t get_net_param_from_list(smartlist_t *net_params, const char *name,
-                                int default_val);
-int32_t networkstatus_get_param(networkstatus_t *ns, const char *param_name,
-                                int32_t default_val);
-int getinfo_helper_networkstatus(control_connection_t *conn,
-                                 const char *question, char **answer,
-                                 const char **errmsg);
-int32_t networkstatus_get_bw_weight(networkstatus_t *ns, const char *weight,
-                                    int32_t default_val);
-const char *networkstatus_get_flavor_name(consensus_flavor_t flav);
-int networkstatus_parse_flavor_name(const char *flavname);
-void document_signature_free(document_signature_t *sig);
-document_signature_t *document_signature_dup(const document_signature_t *sig);
-void networkstatus_free_all(void);
-
 /********************************* ntmain.c ***************************/
 #ifdef MS_WINDOWS
 #if !defined (WINCE)
index c362bcbfd71d56d599480b96e6a8d3ce7c9f5e64..83f875428ed974c9d6a21885c020b1a5a65155c8 100644 (file)
@@ -23,6 +23,7 @@
 #include "geoip.h"
 #include "main.h"
 #include "mempool.h"
+#include "networkstatus.h"
 #include "rendcommon.h"
 #include "routerlist.h"
 
index 5d72ef8c0ccc7083a85ab0fade2f36c8de60133b..0324102d9228ed554f79024a238290292570ca91 100644 (file)
@@ -13,6 +13,7 @@
 #include "circuituse.h"
 #include "config.h"
 #include "directory.h"
+#include "networkstatus.h"
 #include "rendclient.h"
 #include "rendcommon.h"
 #include "rendservice.h"
index a84ccb853f0f6c891c7419fa52d5f24f00b71a0f..f189943a16eb7666d15db36cb54fd558b620e5ef 100644 (file)
@@ -22,6 +22,7 @@
 #include "geoip.h"
 #include "hibernate.h"
 #include "main.h"
+#include "networkstatus.h"
 #include "rendcommon.h"
 #include "rendservice.h"
 #include "router.h"
index c3b6ffbb34d452fb7035a43765c7d15d3aabece5..a7df1f5e05e1c07372f5a61b439acc157b887399 100644 (file)
@@ -18,6 +18,7 @@
 #include "routerlist.h"
 #include "memarea.h"
 #include "microdesc.h"
+#include "networkstatus.h"
 #undef log
 #include <math.h>
 
index 206ee48073483e5b9415d39512a6a48641a9dfdb..628dac7cf95b287bf918c10f557b0fe6e0c09907 100644 (file)
@@ -11,6 +11,7 @@
 #include "directory.h"
 #include "dirserv.h"
 #include "dirvote.h"
+#include "networkstatus.h"
 #include "router.h"
 #include "routerlist.h"
 #include "test.h"