aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-06-15 12:52:22 -0400
committerNick Mathewson <nickm@torproject.org>2018-06-15 12:52:22 -0400
commitc9e4ebf96a9d5fe8d6ae74be96ea00f8c5d493ac (patch)
tree623a3670afdf48a6896f866a21abe6e5188031e1 /src
parentf8794b0b36ad400a228fa3cfd96d7a250632dd29 (diff)
downloadtor-c9e4ebf96a9d5fe8d6ae74be96ea00f8c5d493ac.tar.gz
tor-c9e4ebf96a9d5fe8d6ae74be96ea00f8c5d493ac.zip
Move fp_pair_t declaration to fp_pair.h.
Diffstat (limited to 'src')
-rw-r--r--src/or/directory.c1
-rw-r--r--src/or/fp_pair.h6
-rw-r--r--src/or/or.h8
-rw-r--r--src/test/test_dir.c1
4 files changed, 8 insertions, 8 deletions
diff --git a/src/or/directory.c b/src/or/directory.c
index 720ef975ba..00605c054a 100644
--- a/src/or/directory.c
+++ b/src/or/directory.c
@@ -23,6 +23,7 @@
#include "directory.h"
#include "dirserv.h"
#include "entrynodes.h"
+#include "fp_pair.h"
#include "geoip.h"
#include "hs_cache.h"
#include "hs_common.h"
diff --git a/src/or/fp_pair.h b/src/or/fp_pair.h
index 4498a16101..3c5c33bcbe 100644
--- a/src/or/fp_pair.h
+++ b/src/or/fp_pair.h
@@ -9,6 +9,12 @@
#ifndef _TOR_FP_PAIR_H
#define _TOR_FP_PAIR_H
+/** A pair of digests created by dir_split_resource_info_fingerprint_pairs() */
+typedef struct {
+ char first[DIGEST_LEN];
+ char second[DIGEST_LEN];
+} fp_pair_t;
+
/*
* Declare fp_pair_map_t functions and structs
*/
diff --git a/src/or/or.h b/src/or/or.h
index dd46bfd052..5b7d4344c4 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -3877,14 +3877,6 @@ typedef enum {
BOOTSTRAP_STATUS_DONE=100
} bootstrap_status_t;
-/********************************* directory.c ***************************/
-
-/** A pair of digests created by dir_split_resource_info_fingerprint_pairs() */
-typedef struct {
- char first[DIGEST_LEN];
- char second[DIGEST_LEN];
-} fp_pair_t;
-
/********************************* dirserv.c ***************************/
/** An enum to describe what format we're generating a routerstatus line in.
diff --git a/src/test/test_dir.c b/src/test/test_dir.c
index 5bcbc80e8c..43fc5c5fb4 100644
--- a/src/test/test_dir.c
+++ b/src/test/test_dir.c
@@ -28,6 +28,7 @@
#include "dirserv.h"
#include "dirauth/dirvote.h"
#include "entrynodes.h"
+#include "fp_pair.h"
#include "hibernate.h"
#include "memarea.h"
#include "networkstatus.h"