diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-10 12:50:38 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-10 12:50:38 -0400 |
commit | 5d8336c182777c36ebff561b420d67fcafb9a9f7 (patch) | |
tree | f77e42894f28c0050540a55fea414eed5deb6691 /src/lib/net/address.h | |
parent | ef106ce7884b0af7adcf9f3965ebbe843a47912c (diff) | |
download | tor-5d8336c182777c36ebff561b420d67fcafb9a9f7.tar.gz tor-5d8336c182777c36ebff561b420d67fcafb9a9f7.zip |
Refactor ipv[46].[ch]
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.
Diffstat (limited to 'src/lib/net/address.h')
-rw-r--r-- | src/lib/net/address.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/net/address.h b/src/lib/net/address.h index f8ea573c30..444405ec17 100644 --- a/src/lib/net/address.h +++ b/src/lib/net/address.h @@ -14,7 +14,7 @@ #include "orconfig.h" #include "lib/cc/torint.h" #include "lib/log/util_bug.h" -#include "lib/net/ipv6.h" +#include "lib/net/inaddr_st.h" #include "lib/net/nettypes.h" #ifdef HAVE_NETINET_IN_H |