Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4703 → Rev 4704

/branches/network/uspace/srv/net/include/nil_interface.h
31,7 → 31,7
*/
 
/** @file
* Network interface layer interface.
* Network interface layer module interface.
* The same interface is used for standalone remote device modules as well as for bundle device modules.
* The standalone remote device modules have to be compiled with the nil_remote.c source file.
* The bundle device modules with the appropriate network interface layer source file (eth.c etc.).
55,6 → 55,11
 
#include "device.h"
 
/** @name Network interface layer module interface
* This interface is used by other modules.
*/
/*@{*/
 
/** Returns the device local hardware address.
* @param nil_phone The network interface layer phone. Input parameter.
* @param device_id The device identifier. Input parameter.
140,6 → 145,8
*/
int nil_received_msg( int nil_phone, device_id_t device_id, packet_t packet, services_t target );
 
/*@}*/
 
#endif
 
/** @}