Changeset 89c57b6 in mainline for uspace/lib/net/il/il_remote.c
- Timestamp:
- 2011-04-13T14:45:41Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 88634420
- Parents:
- cefb126 (diff), 17279ead (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 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/il/il_remote.c
rcefb126 r89c57b6 27 27 */ 28 28 29 /** @addtogroup net_il30 * 29 /** @addtogroup libnet 30 * @{ 31 31 */ 32 32 33 33 /** @file 34 * Internetwork layer module interface for the underlying network interface layer.35 * This interface is always called by the remote modules.34 * Internetwork layer module interface for the underlying network interface 35 * layer. 36 36 */ 37 37 38 #ifndef __NET_IL_INTERFACE_H__ 39 #define __NET_IL_INTERFACE_H__ 40 41 #include <async.h> 38 #include <il_remote.h> 39 #include <generic.h> 40 #include <packet_client.h> 42 41 43 42 #include <ipc/services.h> 43 #include <ipc/il.h> 44 44 45 #include <net_messages.h> 46 #include <net_device.h> 47 #include <packet/packet.h> 48 #include <packet/packet_client.h> 49 #include <il_messages.h> 50 51 /** @name Internetwork layer module interface 52 * This interface is used by other modules. 53 */ 54 /*@{*/ 45 #include <net/device.h> 46 #include <net/packet.h> 55 47 56 48 /** Notify the internetwork layer modules about the device state change. … … 66 58 * 67 59 */ 68 static inlineint il_device_state_msg(int il_phone, device_id_t device_id,60 int il_device_state_msg(int il_phone, device_id_t device_id, 69 61 device_state_t state, services_t target) 70 62 { … … 85 77 * 86 78 */ 87 in line static int il_received_msg(int il_phone, device_id_t device_id,88 packet_t packet,services_t target)79 int il_received_msg(int il_phone, device_id_t device_id, packet_t *packet, 80 services_t target) 89 81 { 90 82 return generic_received_msg_remote(il_phone, NET_IL_RECEIVED, device_id, … … 104 96 * 105 97 */ 106 in line static int il_mtu_changed_msg(int il_phone, device_id_t device_id,107 s ize_t mtu, services_t target)98 int il_mtu_changed_msg(int il_phone, device_id_t device_id, size_t mtu, 99 services_t target) 108 100 { 109 101 return generic_device_state_msg_remote(il_phone, NET_IL_MTU_CHANGED, … … 111 103 } 112 104 113 /*@}*/114 115 #endif116 117 105 /** @} 118 106 */
Note:
See TracChangeset
for help on using the changeset viewer.