Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4307 → Rev 4306

/branches/network/uspace/srv/net/netif/netif.h
37,17 → 37,10
#ifndef __NET_NETIF_H__
#define __NET_NETIF_H__
 
#include <async.h>
#include <rwlock.h>
 
#include <ipc/ipc.h>
 
#include "../err.h"
 
#include "../include/device.h"
 
#include "../structures/packet/packet.h"
 
/** Network interface module skeleton global data.
*/
typedef struct netif_globals netif_globals_t;
90,7 → 83,7
struct netif_globals{
/** Networking module phone.
*/
int net_phone;
int networking_phone;
/** Device map.
*/
device_map_t device_map;
122,10 → 115,6
*/
packet_t netif_packet_get_1( size_t content );
 
int netif_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count );
int netif_init_module( async_client_conn_t client_connection );
int netif_run_module( void );
 
#endif
 
/** @}