Changeset 1affcdf3 in mainline for uspace/lib/net/tl/icmp_remote.c


Ignore:
Timestamp:
2011-06-10T19:33:41Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1878386
Parents:
13ecdac9 (diff), 79a141a (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 edited

Legend:

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

    r13ecdac9 r1affcdf3  
    4141
    4242#include <async.h>
     43#include <async_obsolete.h>
    4344#include <errno.h>
    4445#include <ipc/services.h>
     
    6465    icmp_param_t mtu, packet_t *packet)
    6566{
    66         async_msg_3(icmp_phone, NET_ICMP_DEST_UNREACH, (sysarg_t) code,
     67        async_obsolete_msg_3(icmp_phone, NET_ICMP_DEST_UNREACH, (sysarg_t) code,
    6768            (sysarg_t) packet_get_id(packet), (sysarg_t) mtu);
    6869        return EOK;
     
    8384int icmp_source_quench_msg(int icmp_phone, packet_t *packet)
    8485{
    85         async_msg_2(icmp_phone, NET_ICMP_SOURCE_QUENCH, 0,
     86        async_obsolete_msg_2(icmp_phone, NET_ICMP_SOURCE_QUENCH, 0,
    8687            (sysarg_t) packet_get_id(packet));
    8788        return EOK;
     
    103104int icmp_time_exceeded_msg(int icmp_phone, icmp_code_t code, packet_t *packet)
    104105{
    105         async_msg_2(icmp_phone, NET_ICMP_TIME_EXCEEDED, (sysarg_t) code,
     106        async_obsolete_msg_2(icmp_phone, NET_ICMP_TIME_EXCEEDED, (sysarg_t) code,
    106107            (sysarg_t) packet_get_id(packet));
    107108        return EOK;
     
    125126    icmp_param_t pointer, packet_t *packet)
    126127{
    127         async_msg_3(icmp_phone, NET_ICMP_PARAMETERPROB, (sysarg_t) code,
     128        async_obsolete_msg_3(icmp_phone, NET_ICMP_PARAMETERPROB, (sysarg_t) code,
    128129            (sysarg_t) packet_get_id(packet), (sysarg_t) pointer);
    129130        return EOK;
Note: See TracChangeset for help on using the changeset viewer.