blob: d0a275bf98f50bdd2587178d40e1654211c838c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/* hash table */
#include <stdio.h>
#include <stdlib.h>
#include <netinet/in.h>
#include "counter_hash.h"
#include "hash.h"
#include "iftop.h"
#define hash_table_size 256
int counter_hash_compare(void* a, void* b) {
return *(long*)a == *(long*)b;
}
int counter_hash_hash(void* key) {
int hash;
long addr;
addr = *(long*)key;
hash = ((addr & 0x000000FF)
+ (addr & 0x0000FF00 >> 8)
+ (addr & 0x00FF0000 >> 16)
+ (addr & 0xFF000000 >> 24)
) % 0xFF;
return hash;
}
void* counter_hash_copy_key(void* orig) {
struct in_addr* copy;
copy = xmalloc(sizeof *copy);
*copy = *(struct in_addr*)orig;
return copy;
}
void counter_hash_delete_key(void* key) {
free(key);
}
/*
* Allocate and return a hash
*/
hash_type* counter_hash_create() {
hash_type* hash_table;
hash_table = xcalloc(hash_table_size, sizeof *hash_table);
hash_table->size = hash_table_size;
hash_table->compare = &counter_hash_compare;
hash_table->hash = &counter_hash_hash;
hash_table->delete_key = &counter_hash_delete_key;
hash_table->copy_key = &counter_hash_copy_key;
hash_initialise(hash_table);
return hash_table;
}
|