diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-02-19 19:30:05 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-02-20 10:41:06 -0500 |
commit | e425ffc6375f28554ad3491f3bfc57b69964a394 (patch) | |
tree | 20d375eda8b2fa8c90c91fcc1a231f290fddbf7e /src/core | |
parent | dd4fa9b46899855dec66e31a1ebf5164d5cd281c (diff) | |
download | tor-e425ffc6375f28554ad3491f3bfc57b69964a394.tar.gz tor-e425ffc6375f28554ad3491f3bfc57b69964a394.zip |
Disable routerkeys.c with --disable-relay-mode.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/or/include.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/or/include.am b/src/core/or/include.am index 8f0f0bb612..89445e6981 100644 --- a/src/core/or/include.am +++ b/src/core/or/include.am @@ -3,7 +3,6 @@ LIBTOR_APP_A_SOURCES += \ src/core/or/address_set.c \ src/core/or/channel.c \ - src/core/or/relay_handshake.c \ src/core/or/channelpadding.c \ src/core/or/channeltls.c \ src/core/or/circuitbuild.c \ @@ -29,6 +28,7 @@ LIBTOR_APP_A_SOURCES += \ src/core/or/protover_rust.c \ src/core/or/reasons.c \ src/core/or/relay.c \ + src/core/or/relay_handshake.c \ src/core/or/scheduler.c \ src/core/or/scheduler_kist.c \ src/core/or/scheduler_vanilla.c \ @@ -43,7 +43,6 @@ noinst_HEADERS += \ src/core/or/cell_queue_st.h \ src/core/or/cell_st.h \ src/core/or/channel.h \ - src/core/or/relay_handshake.h \ src/core/or/channelpadding.h \ src/core/or/channeltls.h \ src/core/or/circuit_st.h \ @@ -90,6 +89,7 @@ noinst_HEADERS += \ src/core/or/reasons.h \ src/core/or/relay.h \ src/core/or/relay_crypto_st.h \ + src/core/or/relay_handshake.h \ src/core/or/scheduler.h \ src/core/or/sendme.h \ src/core/or/server_port_cfg_st.h \ |