Changeset 89c57b6 in mainline for uspace/lib/net/tl/tl_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/tl/tl_remote.c
rcefb126 r89c57b6 27 27 */ 28 28 29 /** @addtogroup net_tl30 * 29 /** @addtogroup libnet 30 * @{ 31 31 */ 32 32 33 /** @file 34 * Transport layer module interface for the underlying internetwork layer. 35 */ 33 #include <tl_remote.h> 34 #include <generic.h> 35 #include <packet_client.h> 36 36 37 #i fndef __NET_TL_INTERFACE_H__38 # define __NET_TL_INTERFACE_H__37 #include <ipc/services.h> 38 #include <ipc/tl.h> 39 39 40 #include <async.h> 41 #include <ipc/services.h> 42 43 #include <net_messages.h> 44 #include <net_device.h> 45 #include <packet/packet.h> 46 #include <packet/packet_client.h> 47 #include <tl_messages.h> 48 49 /** @name Transport layer module interface 50 * This interface is used by other modules. 51 */ 52 /*@{*/ 40 #include <net/device.h> 41 #include <net/packet.h> 53 42 54 43 /** Notify the remote transport layer modules about the received packet/s. … … 68 57 * 69 58 */ 70 in line static int tl_received_msg(int tl_phone, device_id_t device_id,71 packet_t packet,services_t target, services_t error)59 int tl_received_msg(int tl_phone, device_id_t device_id, packet_t *packet, 60 services_t target, services_t error) 72 61 { 73 62 return generic_received_msg_remote(tl_phone, NET_TL_RECEIVED, device_id, … … 75 64 } 76 65 77 /*@}*/78 79 #endif80 81 66 /** @} 82 67 */
Note:
See TracChangeset
for help on using the changeset viewer.