Rev 4696 | Rev 4720 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4696 | Rev 4704 | ||
---|---|---|---|
Line 45... | Line 45... | ||
45 | #include "../structures/generic_char_map.h" |
45 | #include "../structures/generic_char_map.h" |
46 | #include "../structures/measured_strings.h" |
46 | #include "../structures/measured_strings.h" |
47 | #include "../structures/module_map.h" |
47 | #include "../structures/module_map.h" |
48 | #include "../structures/packet/packet.h" |
48 | #include "../structures/packet/packet.h" |
49 | 49 | ||
- | 50 | /** @name Modules definitions |
|
- | 51 | */ |
|
- | 52 | /*@{*/ |
|
- | 53 | ||
50 | /** Loopback network interface module name. |
54 | /** Loopback network interface module name. |
51 | */ |
55 | */ |
52 | #define LO_NAME "lo" |
56 | #define LO_NAME "lo" |
53 | 57 | ||
54 | /** Loopback network interface module full path filename. |
58 | /** Loopback network interface module full path filename. |
Line 77... | Line 81... | ||
77 | 81 | ||
78 | /** Ethernet module full path filename. |
82 | /** Ethernet module full path filename. |
79 | */ |
83 | */ |
80 | #define NILDUMMY_FILENAME "/srv/nildummy" |
84 | #define NILDUMMY_FILENAME "/srv/nildummy" |
81 | 85 | ||
82 | /** Internet protocol module name. |
86 | /** IP module name. |
83 | */ |
87 | */ |
84 | #define IP_NAME "ip" |
88 | #define IP_NAME "ip" |
85 | 89 | ||
86 | /** Internet protocol module full path filename. |
90 | /** IP module full path filename. |
87 | */ |
91 | */ |
88 | #define IP_FILENAME "/srv/ip" |
92 | #define IP_FILENAME "/srv/ip" |
89 | 93 | ||
- | 94 | /*@}*/ |
|
- | 95 | ||
- | 96 | /** @name Configuration setting names definitions |
|
- | 97 | */ |
|
- | 98 | /*@{*/ |
|
- | 99 | ||
90 | /** Network interface name configuration label. |
100 | /** Network interface name configuration label. |
91 | */ |
101 | */ |
92 | #define CONF_NAME "NAME" |
102 | #define CONF_NAME "NAME" |
93 | 103 | ||
94 | /** Network interface module name configuration label. |
104 | /** Network interface module name configuration label. |
Line 113... | Line 123... | ||
113 | 123 | ||
114 | /** Maximum transmission unit configuration label. |
124 | /** Maximum transmission unit configuration label. |
115 | */ |
125 | */ |
116 | #define CONF_MTU "MTU" |
126 | #define CONF_MTU "MTU" |
117 | 127 | ||
- | 128 | /*@}*/ |
|
- | 129 | ||
118 | /** Type definition of the network interface specific data. |
130 | /** Type definition of the network interface specific data. |
119 | * @see netif |
131 | * @see netif |
120 | */ |
132 | */ |
121 | typedef struct netif netif_t; |
133 | typedef struct netif netif_t; |
122 | 134 |