Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4703 → Rev 4704

/branches/network/uspace/srv/net/il/arp/arp_messages.h
67,11 → 67,17
NET_ARP_CLEAN_CACHE,
} arp_messages;
 
/** @name ARP specific message parameters definitions
*/
/*@{*/
 
/** Returns the protocol service message parameter.
* @param call The message call structure. Input parameter.
*/
#define ARP_GET_NETIF( call ) ( services_t ) IPC_GET_ARG2( * call )
 
/*@}*/
 
#endif
 
/** @}
/branches/network/uspace/srv/net/il/arp/arp.h
127,10 → 127,10
/** Broadcast device hardware address data.
*/
char * broadcast_data;
/** Device driver service.
/** Device module service.
*/
services_t service;
/** Driver phone.
/** Device module phone.
*/
int phone;
/** Protocol map.
/branches/network/uspace/srv/net/il/arp/arp_oc.h
38,6 → 38,10
#ifndef __NET_ARP_ARPOP_H__
#define __NET_ARP_ARPOP_H__
 
/** @name ARP operation codes definitions
*/
/*@{*/
 
/** REQUEST operation code.
*/
#define ARPOP_REQUEST 1
130,6 → 134,8
*/
#define ARPOP_MAPOS_UNARP 23
 
/*@}*/
 
#endif
 
/** @}