Changeset 89c57b6 in mainline for uspace/lib/net/tl/tl_remote.c


Ignore:
Timestamp:
2011-04-13T14:45:41Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
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.
Message:

Merge mainline changes.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/net/tl/tl_remote.c

    rcefb126 r89c57b6  
    2727 */
    2828
    29 /** @addtogroup net_tl
    30  *  @{
     29/** @addtogroup libnet
     30 * @{
    3131 */
    3232
    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>
    3636
    37 #ifndef __NET_TL_INTERFACE_H__
    38 #define __NET_TL_INTERFACE_H__
     37#include <ipc/services.h>
     38#include <ipc/tl.h>
    3939
    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>
    5342
    5443/** Notify the remote transport layer modules about the received packet/s.
     
    6857 *
    6958 */
    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)
     59int tl_received_msg(int tl_phone, device_id_t device_id, packet_t *packet,
     60    services_t target, services_t error)
    7261{
    7362        return generic_received_msg_remote(tl_phone, NET_TL_RECEIVED, device_id,
     
    7564}
    7665
    77 /*@}*/
    78 
    79 #endif
    80 
    8166/** @}
    8267 */
Note: See TracChangeset for help on using the changeset viewer.