
#ifndef _CONFIG_H
#define _CONFIG_H

/* hash table lenght */
#define HLEN 50

/* network port to wait for incoming connections */
#define PORT 2626

/* max. number of simultaneous connections */
#define MAXCONN 4092

/* timeout for orphans, in seconds */
#define ORPHAN_TIMEOUT 5

/* max. number of threads */
#define MAXTHREADS 16

#endif


