diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-28 08:49:07 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-28 08:49:07 -0400 |
commit | 544ab27a949406628809869111b7288017a5bcb1 (patch) | |
tree | 911f21717353327dad7ae296cef4ca0a893839a8 /src/lib/net/include.am | |
parent | 0b7452eeb2f2dee7acefee2d3ca2cb402a877ea1 (diff) | |
download | tor-544ab27a949406628809869111b7288017a5bcb1.tar.gz tor-544ab27a949406628809869111b7288017a5bcb1.zip |
Extract the alert-socket code into lib/net.
This code was in compat_threads, since it was _used_ for efficiently
notifying the main libevent thread from another thread. But in
spite of its usage, it's fundamentally a part of the network code.
Diffstat (limited to 'src/lib/net/include.am')
-rw-r--r-- | src/lib/net/include.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/net/include.am b/src/lib/net/include.am index 6bd829165e..90049c95d4 100644 --- a/src/lib/net/include.am +++ b/src/lib/net/include.am @@ -7,6 +7,7 @@ endif src_lib_libtor_net_a_SOURCES = \ src/lib/net/address.c \ + src/lib/net/alertsock.c \ src/lib/net/ipv4.c \ src/lib/net/ipv6.c \ src/lib/net/resolve.c \ @@ -19,6 +20,7 @@ src_lib_libtor_net_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) noinst_HEADERS += \ src/lib/net/address.h \ + src/lib/net/alertsock.h \ src/lib/net/ipv4.h \ src/lib/net/ipv6.h \ src/lib/net/nettypes.h \ |