/** @file config.h * @data May 6, 2009 */ #ifndef CONFIG_H_ #define CONFIG_H_ /* These are default values. They can be changed through the makefile. */ /** The number of milliseconds for relrecv to wait for a message. */ #ifndef RELRECV_TIMEOUT #define RELRECV_TIMEOUT 1000 #endif /** The number of bytes relsend transmits in the DATA message. */ #ifndef RELSEND_DATASIZE #define RELSEND_DATASIZE 5000 #endif /** The number of milliseconds for relsend to wait for a message. */ #ifndef RELSEND_TIMEOUT #define RELSEND_TIMEOUT 5000 #endif /** The maximum UDP transfer rate. */ #ifndef UDP_MAX_KBPS #define UDP_MAX_KBPS 100000 #endif #endif /*CONFIG_H_*/