Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4702 → Rev 4703

/branches/network/uspace/srv/net/netif/netif_module.h
51,10 → 51,6
*/
int netif_initialize( void );
 
/** Automatically probes all known devices.
*/
int netif_probe_auto_message( void );
 
/** Probes the existence of the device.
* @param device_id The device identifier. Input parameter.
* @param irq The device interrupt number. Input parameter.
102,6 → 98,16
*/
int netif_get_addr_message( device_id_t device_id, measured_string_ref address );
 
/** Processes the netif driver specific message.
* This function is called for uncommon messages received by the netif skeleton.
* @param callid The message identifier. Input parameter.
* @param call The message parameters. Input parameter.
* @param answer The message answer parameters. Output parameter.
* @param answer_count The last parameter for the actual answer in the answer parameter. Output parameter.
* @returns EOK on success.
* @returns ENOTSUP if the message is not known.
* @returns Other error codes as defined for the specific module message implementation.
*/
int netif_specific_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count );
 
/** Returns the device usage statistics.