Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3845 → Rev 3846

/branches/network/uspace/srv/net/configuration.h
27,20 → 27,48
*/
 
/** @addtogroup net
* @{
* @{
*/
 
/** @file
* A networking subsystem compilation configuration file.
*/
 
#ifndef __NET_CONFIGURATION_H__
#define __NET_CONFIGURATION_H__
 
#define NET_SELF_TEST 0
/** An option to activate the self test.
*/
#define NET_SELF_TEST 0
 
/** An option to activate the measured strings self test.
* The option NET_SELF_TEST has to be activated.
* @see measured_strings.h
*/
#define NET_SELF_TEST_MEASURED_STRINGS 1
#define NET_SELF_TEST_CHAR_MAP 0
#define NET_SELF_TEST_INT_MAP 0
#define NET_SELF_TEST_GENERIC_FIELD 0
 
/** An option to activate the char map self test.
* The option NET_SELF_TEST has to be activated.
* @see char_map.h
*/
#define NET_SELF_TEST_CHAR_MAP 0
 
/** An option to activate the integral map self test.
* The option NET_SELF_TEST has to be activated.
* @see int_map.h
*/
#define NET_SELF_TEST_INT_MAP 0
 
/** An option to activate the generic field self test.
* The option NET_SELF_TEST has to be activated.
* @see generic_field.h
*/
#define NET_SELF_TEST_GENERIC_FIELD 0
 
/** An option to activate the generic char map self test.
* The option NET_SELF_TEST has to be activated.
* @see generic_char_map.h
*/
#define NET_SELF_TEST_GENERIC_CHAR_MAP 0
 
#endif