Improves test and cleanup.
authorFlorent Bruneau <florent.bruneau@polytechnique.org>
Sat, 4 Oct 2008 21:00:59 +0000 (23:00 +0200)
committerFlorent Bruneau <florent.bruneau@polytechnique.org>
Sat, 4 Oct 2008 21:00:59 +0000 (23:00 +0200)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
postlicyd/rbl.c
postlicyd/tst-rbl.c

index d03d06b..911694a 100644 (file)
@@ -195,7 +195,6 @@ uint32_t rbldb_stats(const rbldb_t *rbl)
     for (int i = 0 ; i < 1 << 16 ; ++i) {
         ips += array_len(rbl->ips[i]);
     }
-    printf("memory overhead of rbldb: %u\n", sizeof(rbldb_t));
     return ips;
 }
 
index 8ba5e12..30d6533 100644 (file)
@@ -48,10 +48,10 @@ int main(int argc, char *argv[])
                rbldb_stats(db) * 4);
 
         time_t now = time(NULL);
-        for (uint32_t i = 0 ; i < 100000000 ; ++i) {
+        for (uint32_t i = 0 ; i < 1000000000 ; ++i) {
             rbldb_ipv4_lookup(db, (88 << 24) | (170 << 16) | (239 << 8) | (132));
         }
-        printf("%ld request per second\n", 100000000 / (time(NULL) - now));
+        printf("%ld request per second\n", 1000000000 / (time(NULL) - now));
         rbldb_delete(&db);
     }
     return 0;