diff options
Diffstat (limited to 'src/or/relay.c')
-rw-r--r-- | src/or/relay.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/or/relay.c b/src/or/relay.c index 50f59d6b99..a60e5d6019 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -1,7 +1,7 @@ /* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. - * Copyright (c) 2007-2017, The Tor Project, Inc. */ + * Copyright (c) 2007-2018, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** @@ -63,6 +63,7 @@ #include "control.h" #include "crypto_rand.h" #include "crypto_util.h" +#include "directory.h" #include "geoip.h" #include "hs_cache.h" #include "main.h" @@ -81,6 +82,18 @@ #include "scheduler.h" #include "rephist.h" +#include "cell_st.h" +#include "cell_queue_st.h" +#include "cpath_build_state_st.h" +#include "dir_connection_st.h" +#include "destroy_cell_queue_st.h" +#include "entry_connection_st.h" +#include "extend_info_st.h" +#include "or_circuit_st.h" +#include "origin_circuit_st.h" +#include "routerinfo_st.h" +#include "socks_request_st.h" + static edge_connection_t *relay_lookup_conn(circuit_t *circ, cell_t *cell, cell_direction_t cell_direction, crypt_path_t *layer_hint); |