Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3911 → Rev 3912

/branches/network/uspace/srv/net/configuration.h
1,5 → 1,5
/*
* Copyright (c) 2008 Lukas Mejdrech
* Copyright (c) 2009 Lukas Mejdrech
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
31,42 → 31,42
*/
 
/** @file
* A networking subsystem compilation configuration file.
* Networking subsystem compilation configuration.
*/
 
#ifndef __NET_CONFIGURATION_H__
#define __NET_CONFIGURATION_H__
 
/** An option to activate the self test.
/** 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.
/** Activate the measured strings self test.
* The 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.
/** Activate the char map self test.
* The 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.
/** Activate the integral map self test.
* The 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.
/** Activate the generic field self test.
* The 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.
/** Activate the generic char map self test.
* The NET_SELF_TEST has to be activated.
* @see generic_char_map.h
*/
#define NET_SELF_TEST_GENERIC_CHAR_MAP 0