Subversion Repositories HelenOS

Rev

Rev 3846 | Rev 4075 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3846 Rev 3912
Line 1... Line 1...
1
/*
1
/*
2
 * Copyright (c) 2008 Lukas Mejdrech
2
 * Copyright (c) 2009 Lukas Mejdrech
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
Line 29... Line 29...
29
/** @addtogroup net
29
/** @addtogroup net
30
 *  @{
30
 *  @{
31
 */
31
 */
32
 
32
 
33
/** @file
33
/** @file
34
 *  A networking subsystem compilation configuration file.
34
 *  Networking subsystem compilation configuration.
35
 */
35
 */
36
 
36
 
37
#ifndef __NET_CONFIGURATION_H__
37
#ifndef __NET_CONFIGURATION_H__
38
#define __NET_CONFIGURATION_H__
38
#define __NET_CONFIGURATION_H__
39
 
39
 
40
/** An option to activate the self test.
40
/** Activate the self test.
41
 */
41
 */
42
#define NET_SELF_TEST                   0
42
#define NET_SELF_TEST                   0
43
 
43
 
44
/** An option to activate the measured strings self test.
44
/** Activate the measured strings self test.
45
 *  The option NET_SELF_TEST has to be activated.
45
 *  The NET_SELF_TEST has to be activated.
46
 *  @see measured_strings.h
46
 *  @see measured_strings.h
47
 */
47
 */
48
#define NET_SELF_TEST_MEASURED_STRINGS  1
48
#define NET_SELF_TEST_MEASURED_STRINGS  1
49
 
49
 
50
/** An option to activate the char map self test.
50
/** Activate the char map self test.
51
 *  The option NET_SELF_TEST has to be activated.
51
 *  The NET_SELF_TEST has to be activated.
52
 *  @see char_map.h
52
 *  @see char_map.h
53
 */
53
 */
54
#define NET_SELF_TEST_CHAR_MAP          0
54
#define NET_SELF_TEST_CHAR_MAP          0
55
 
55
 
56
/** An option to activate the integral map self test.
56
/** Activate the integral map self test.
57
 *  The option NET_SELF_TEST has to be activated.
57
 *  The NET_SELF_TEST has to be activated.
58
 *  @see int_map.h
58
 *  @see int_map.h
59
 */
59
 */
60
#define NET_SELF_TEST_INT_MAP           0
60
#define NET_SELF_TEST_INT_MAP           0
61
 
61
 
62
/** An option to activate the generic field self test.
62
/** Activate the generic field self test.
63
 *  The option NET_SELF_TEST has to be activated.
63
 *  The NET_SELF_TEST has to be activated.
64
 *  @see generic_field.h
64
 *  @see generic_field.h
65
 */
65
 */
66
#define NET_SELF_TEST_GENERIC_FIELD     0
66
#define NET_SELF_TEST_GENERIC_FIELD     0
67
 
67
 
68
/** An option to activate the generic char map self test.
68
/** Activate the generic char map self test.
69
 *  The option NET_SELF_TEST has to be activated.
69
 *  The NET_SELF_TEST has to be activated.
70
 *  @see generic_char_map.h
70
 *  @see generic_char_map.h
71
 */
71
 */
72
#define NET_SELF_TEST_GENERIC_CHAR_MAP  0
72
#define NET_SELF_TEST_GENERIC_CHAR_MAP  0
73
 
73
 
74
#endif
74
#endif