mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
5d8336c182
These are now combined into an inaddr.[ch], since their purpose is to implement functions for struct in_addr and struct in6_addr. The definitions for in6_addr and its allies are now in a separate header, inaddr_st.h. Closes ticket 26532.
33 lines
892 B
Plaintext
33 lines
892 B
Plaintext
|
|
noinst_LIBRARIES += src/lib/libtor-net.a
|
|
|
|
if UNITTESTS_ENABLED
|
|
noinst_LIBRARIES += src/lib/libtor-net-testing.a
|
|
endif
|
|
|
|
src_lib_libtor_net_a_SOURCES = \
|
|
src/lib/net/address.c \
|
|
src/lib/net/alertsock.c \
|
|
src/lib/net/buffers_net.c \
|
|
src/lib/net/gethostname.c \
|
|
src/lib/net/inaddr.c \
|
|
src/lib/net/resolve.c \
|
|
src/lib/net/socket.c
|
|
|
|
src_lib_libtor_net_testing_a_SOURCES = \
|
|
$(src_lib_libtor_net_a_SOURCES)
|
|
src_lib_libtor_net_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS)
|
|
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/buffers_net.h \
|
|
src/lib/net/gethostname.h \
|
|
src/lib/net/inaddr.h \
|
|
src/lib/net/inaddr_st.h \
|
|
src/lib/net/nettypes.h \
|
|
src/lib/net/resolve.h \
|
|
src/lib/net/socket.h \
|
|
src/lib/net/socks5_status.h
|