diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-05 14:51:07 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-05 14:51:07 -0400 |
commit | 0adcfbc7c8b579ebfe4c16c86700e8b466fc9a56 (patch) | |
tree | b6bba4d836d10e6285e357de9970bfdc3eb3b8a9 /src/common/address_set.h | |
parent | 24c0f83185a9c5dff080b250d9a8e15bbf8e1a88 (diff) | |
download | tor-0adcfbc7c8b579ebfe4c16c86700e8b466fc9a56.tar.gz tor-0adcfbc7c8b579ebfe4c16c86700e8b466fc9a56.zip |
Move address_set to src/or
This is temporary, until src/or is split.
Putting this in containers would be another logical alternative,
except that addresses depend on containers, and we don't like
cycles.
Diffstat (limited to 'src/common/address_set.h')
-rw-r--r-- | src/common/address_set.h | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/common/address_set.h b/src/common/address_set.h deleted file mode 100644 index 2efa1cb03b..0000000000 --- a/src/common/address_set.h +++ /dev/null @@ -1,31 +0,0 @@ -/* Copyright (c) 2018-2018, The Tor Project, Inc. */ -/* See LICENSE for licensing information */ - -/** - * \file address_set.h - * \brief Types to handle sets of addresses. - **/ - -#ifndef TOR_ADDRESS_SET_H -#define TOR_ADDRESS_SET_H - -#include "orconfig.h" -#include "lib/cc/torint.h" -#include "lib/container/bloomfilt.h" - -/** - * An address_set_t represents a set of tor_addr_t values. The implementation - * is probabilistic: false negatives cannot occur but false positives are - * possible. - */ -typedef struct bloomfilt_t address_set_t; -struct tor_addr_t; - -address_set_t *address_set_new(int max_addresses_guess); -#define address_set_free(set) bloomfilt_free(set) -void address_set_add(address_set_t *set, const struct tor_addr_t *addr); -void address_set_add_ipv4h(address_set_t *set, uint32_t addr); -int address_set_probably_contains(const address_set_t *set, - const struct tor_addr_t *addr); - -#endif |