diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-28 11:39:49 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-28 11:39:49 -0400 |
commit | 48ebd9bf76a0e5ff60b88f8906919016de82e819 (patch) | |
tree | 76047a0a4227be696a54987d7d6f4430ec4597e3 /src/or/relay.c | |
parent | aa3edfd2053bb418907f204e171ae8f7e78c30eb (diff) | |
download | tor-48ebd9bf76a0e5ff60b88f8906919016de82e819.tar.gz tor-48ebd9bf76a0e5ff60b88f8906919016de82e819.zip |
Move weakrng into lib/intmath
Diffstat (limited to 'src/or/relay.c')
-rw-r--r-- | src/or/relay.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/relay.c b/src/or/relay.c index 85b5cf7aa6..9ff3d96c11 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -94,6 +94,8 @@ #include "or/routerinfo_st.h" #include "or/socks_request_st.h" +#include "lib/intmath/weakrng.h" + static edge_connection_t *relay_lookup_conn(circuit_t *circ, cell_t *cell, cell_direction_t cell_direction, crypt_path_t *layer_hint); @@ -3084,4 +3086,3 @@ circuit_queue_streams_are_blocked(circuit_t *circ) return circ->streams_blocked_on_p_chan; } } - |