]> git.tuebingen.mpg.de Git - adu.git/blobdiff - bloom.c
Rename bloom_test_and_insert() to bloom_insert().
[adu.git] / bloom.c
diff --git a/bloom.c b/bloom.c
index 2aff535e833f75ba178bfcbf0524e0bf19d0cca7..b072ad163e23e409bb4dd2cf8139e93c95059113 100644 (file)
--- a/bloom.c
+++ b/bloom.c
@@ -96,7 +96,7 @@ static int test_and_set_bit(uint64_t bitnum, struct bloom *b)
        return ret;
 }
 
-int bloom_test_and_insert(const uint8_t *data, size_t len, struct bloom *b)
+int bloom_insert(const uint8_t *data, size_t len, struct bloom *b)
 {
        int i, ret = 0;
        uint32_t h = 0xb11924e1; /* some arbitrary value */
@@ -153,11 +153,11 @@ struct bloom *bloom_new(unsigned order, unsigned num_hash_functions)
 
 #ifdef TEST_BLOOM
 
-int bloom_test_and_insert_string(const char *str, struct bloom *b)
+int bloom_insert_string(const char *str, struct bloom *b)
 {
        uint32_t len = strlen(str);
 
-       return bloom_test_and_insert((const uint8_t *)str, len, b);
+       return bloom_insert((const uint8_t *)str, len, b);
 }
 
 void add_stdin(struct bloom *b)
@@ -171,7 +171,7 @@ void add_stdin(struct bloom *b)
                        continue;
                if (buf[len - 1] == '\n')
                        buf[len - 1] = '\0';
-               if (bloom_test_and_insert_string(buf, b))
+               if (bloom_insert_string(buf, b))
                        false_positives++;
        }
        INFO_LOG("filter contains %llu entries\n", b->num_entries);