Changeset 858fc90 in mainline for uspace/srv/net/il/arp/arp_messages.h
- Timestamp:
- 2010-03-15T19:35:25Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6092b56e
- Parents:
- 92307f1 (diff), 4684368 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/arp/arp_messages.h
r92307f1 r858fc90 46 46 */ 47 47 typedef enum{ 48 /** New device message.49 * @see arp_ device_req()48 /** Clean cache message. 49 * @see arp_clean_cache() 50 50 */ 51 NET_ARP_ DEVICE = NET_ARP_FIRST,52 /** Address translationmessage.53 * @see arp_ translate_req()51 NET_ARP_CLEAN_CACHE = NET_ARP_FIRST, 52 /** Clear address cache message. 53 * @see arp_clear_address_msg() 54 54 */ 55 NET_ARP_ TRANSLATE,55 NET_ARP_CLEAR_ADDRESS, 56 56 /** Clear device cache message. 57 57 * @see arp_clear_device_req() 58 58 */ 59 59 NET_ARP_CLEAR_DEVICE, 60 /** Clear address cache message.61 * @see arp_ clear_address_msg()60 /** New device message. 61 * @see arp_device_req() 62 62 */ 63 NET_ARP_ CLEAR_ADDRESS,64 /** Clean cachemessage.65 * @see arp_ clean_cache()63 NET_ARP_DEVICE, 64 /** Address translation message. 65 * @see arp_translate_req() 66 66 */ 67 NET_ARP_ CLEAN_CACHE,67 NET_ARP_TRANSLATE 68 68 } arp_messages; 69 69 … … 75 75 * @param[in] call The message call structure. 76 76 */ 77 #define ARP_GET_NETIF( call ) ( services_t ) IPC_GET_ARG2( * call)77 #define ARP_GET_NETIF(call) (services_t) IPC_GET_ARG2(*call) 78 78 79 79 /*@}*/
Note:
See TracChangeset
for help on using the changeset viewer.