Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4703 → Rev 4704

/branches/network/uspace/srv/net/net/net.h
47,6 → 47,10
#include "../structures/module_map.h"
#include "../structures/packet/packet.h"
 
/** @name Modules definitions
*/
/*@{*/
 
/** Loopback network interface module name.
*/
#define LO_NAME "lo"
79,14 → 83,20
*/
#define NILDUMMY_FILENAME "/srv/nildummy"
 
/** Internet protocol module name.
/** IP module name.
*/
#define IP_NAME "ip"
 
/** Internet protocol module full path filename.
/** IP module full path filename.
*/
#define IP_FILENAME "/srv/ip"
 
/*@}*/
 
/** @name Configuration setting names definitions
*/
/*@{*/
 
/** Network interface name configuration label.
*/
#define CONF_NAME "NAME"
115,6 → 125,8
*/
#define CONF_MTU "MTU"
 
/*@}*/
 
/** Type definition of the network interface specific data.
* @see netif
*/
/branches/network/uspace/srv/net/net/start/netstart.c
31,8 → 31,8
*/
 
/** @file
* Starts the net subsystem.
* Performs self test if configured so.
* Starts the networking subsystem.
* Performs self test if configured to.
* @see configuration.h
*/