Changes in uspace/lib/net/tl/tl_remote.c [609243f4:014dd57b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/tl/tl_remote.c
r609243f4 r014dd57b 34 34 #include <generic.h> 35 35 #include <packet_client.h> 36 36 37 #include <ipc/services.h> 37 38 #include <ipc/tl.h> 39 38 40 #include <net/device.h> 39 41 #include <net/packet.h> 40 #include <async.h>41 42 42 43 /** Notify the remote transport layer modules about the received packet/s. 43 44 * 44 * @param[in] sess Transport layer module session.45 * @param[in] device_id Device identifier.46 * @param[in] packet Received packet or the received packet queue.45 * @param[in] tl_phone The transport layer module phone used for remote calls. 46 * @param[in] device_id The device identifier. 47 * @param[in] packet The received packet or the received packet queue. 47 48 * The packet queue is used to carry a fragmented 48 49 * datagram. The first packet contains the headers, 49 50 * the others contain only data. 50 * @param[in] target T arget transport layer module service to be51 * @param[in] target The target transport layer module service to be 51 52 * delivered to. 52 * @param[in] error Packet error reporting service. Prefixes the53 * @param[in] error The packet error reporting service. Prefixes the 53 54 * received packet. 54 55 * … … 56 57 * 57 58 */ 58 int tl_received_msg( async_sess_t *sess, nic_device_id_t device_id, packet_t *packet,59 int tl_received_msg(int tl_phone, device_id_t device_id, packet_t *packet, 59 60 services_t target, services_t error) 60 61 { 61 return generic_received_msg_remote( sess, NET_TL_RECEIVED, device_id,62 return generic_received_msg_remote(tl_phone, NET_TL_RECEIVED, device_id, 62 63 packet_get_id(packet), target, error); 63 64 }
Note:
See TracChangeset
for help on using the changeset viewer.