HASHSZ
static struct item *config_hashtab[HASHSZ], *file_hashtab[HASHSZ];
aux->next = hashtab[hash % HASHSZ];
hashtab[hash % HASHSZ] = aux;
for (aux = hashtab[hash % HASHSZ]; aux; aux = aux->next) {
return num & (HASHSZ-1);
static struct vendor *vendors[HASHSZ] = { NULL, };
static struct product *products[HASHSZ] = { NULL, };
static struct class *classes[HASHSZ] = { NULL, };
static struct subclass *subclasses[HASHSZ] = { NULL, };
static struct protocol *protocols[HASHSZ] = { NULL, };