Subversion Repositories HelenOS

Compare Revisions

Regard whitespace Rev 3845 → Rev 3846

/branches/network/uspace/srv/net/configuration.h
31,16 → 31,44
*/
 
/** @file
* A networking subsystem compilation configuration file.
*/
 
#ifndef __NET_CONFIGURATION_H__
#define __NET_CONFIGURATION_H__
 
/** 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
 
/** 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