Changeset 018d79b8 in mainline
- Timestamp:
- 2010-10-23T20:25:39Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 95e3fd0b, dfda6a1
- Parents:
- 465c935
- Location:
- uspace/lib/net
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/Makefile
r465c935 r018d79b8 50 50 tl/icmp_client.c \ 51 51 tl/socket_core.c \ 52 tl/tl_interface.c \ 52 53 tl/tl_common.c 53 54 -
uspace/lib/net/include/tl_interface.h
r465c935 r018d79b8 27 27 */ 28 28 29 /** @addtogroup net_tl30 * 29 /** @addtogroup libnet 30 * @{ 31 31 */ 32 32 … … 35 35 */ 36 36 37 #ifndef __NET_TL_INTERFACE_H__38 #define __NET_TL_INTERFACE_H__37 #ifndef LIBNET_TL_INTERFACE_H_ 38 #define LIBNET_TL_INTERFACE_H_ 39 39 40 40 #include <async.h> … … 52 52 /*@{*/ 53 53 54 /** Notify the remote transport layer modules about the received packet/s. 55 * 56 * @param[in] tl_phone The transport layer module phone used for remote calls. 57 * @param[in] device_id The device identifier. 58 * @param[in] packet The received packet or the received packet queue. 59 * The packet queue is used to carry a fragmented 60 * datagram. The first packet contains the headers, 61 * the others contain only data. 62 * @param[in] target The target transport layer module service to be 63 * delivered to. 64 * @param[in] error The packet error reporting service. Prefixes the 65 * received packet. 66 * 67 * @return EOK on success. 68 * 69 */ 70 inline static int tl_received_msg(int tl_phone, device_id_t device_id, 71 packet_t packet, services_t target, services_t error) 72 { 73 return generic_received_msg_remote(tl_phone, NET_TL_RECEIVED, device_id, 74 packet_get_id(packet), target, error); 75 } 54 extern int tl_received_msg(int, device_id_t, packet_t, services_t, services_t); 76 55 77 56 /*@}*/ -
uspace/lib/net/include/tl_local.h
r465c935 r018d79b8 27 27 */ 28 28 29 /** @addtogroup tl_local30 * 29 /** @addtogroup libnet 30 * @{ 31 31 */ 32 32 33 #ifndef __TL_LOCAL_H__34 #define __TL_LOCAL_H__33 #ifndef LIBNET_TL_LOCAL_H_ 34 #define LIBNET_TL_LOCAL_H_ 35 35 36 36 #include <ipc/ipc.h>
Note:
See TracChangeset
for help on using the changeset viewer.