Changes in uspace/lib/c/include/ipc/il.h [522253c1:64d2b10] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/il.h
r522253c1 r64d2b10 33 33 /** @file 34 34 * Internetwork layer modules messages. 35 * @see il_ interface.h35 * @see il_remote.h 36 36 * @see ip_interface.h 37 37 */ … … 40 40 #define LIBC_IL_MESSAGES_H_ 41 41 42 #include <ipc/ipc.h>43 42 #include <ipc/net.h> 44 43 45 44 /** Internet layer modules messages. */ 46 45 typedef enum { 47 /** New device message.48 * @see ip_device_req()49 */50 NET_IL_DEVICE = NET_IL_FIRST,51 46 /** Device state changed message. 52 47 * @see il_device_state_msg() 53 48 */ 54 NET_IL_DEVICE_STATE, 49 NET_IL_DEVICE_STATE = NET_IL_FIRST, 50 55 51 /** Device MTU changed message. 56 52 * @see il_mtu_changed_msg() 57 53 */ 58 54 NET_IL_MTU_CHANGED, 59 /** Packet size message. 60 * @see il_packet_size_req() 61 */ 62 NET_IL_PACKET_SPACE, 55 63 56 /** Packet received message. 64 57 * @see il_received_msg() 65 58 */ 66 NET_IL_RECEIVED, 67 /** Packet send message. 68 * @see il_send_msg() 69 */ 70 NET_IL_SEND 59 NET_IL_RECEIVED 71 60 } il_messages; 72 61 … … 75 64 76 65 /** Return the protocol number message parameter. 77 * @param[in] call The message call structure. 66 * 67 * @param[in] call Message call structure. 68 * 78 69 */ 79 #define IL_GET_PROTO(call) (int) IPC_GET_ARG1(*call)70 #define IL_GET_PROTO(call) ((int) IPC_GET_ARG1(call)) 80 71 81 72 /** Return the registering service message parameter. 82 * @param[in] call The message call structure. 73 * 74 * @param[in] call Message call structure. 75 * 83 76 */ 84 #define IL_GET_SERVICE(call) (services_t) IPC_GET_ARG2(*call)77 #define IL_GET_SERVICE(call) ((services_t) IPC_GET_ARG2(call)) 85 78 86 79 /*@}*/
Note:
See TracChangeset
for help on using the changeset viewer.