mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
Move fp_pair_t declaration to fp_pair.h.
This commit is contained in:
parent
f8794b0b36
commit
c9e4ebf96a
@ -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"
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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.
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user