Changeset 41811af in mainline for uspace/lib/net/tl/icmp_remote.c
- Timestamp:
- 2011-06-10T10:14:26Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ab547063
- Parents:
- 9536e6e (diff), 390d80d (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 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/tl/icmp_remote.c
r9536e6e r41811af 41 41 42 42 #include <async.h> 43 #include <async_obsolete.h> 43 44 #include <errno.h> 44 45 #include <ipc/services.h> … … 64 65 icmp_param_t mtu, packet_t *packet) 65 66 { 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, 67 68 (sysarg_t) packet_get_id(packet), (sysarg_t) mtu); 68 69 return EOK; … … 83 84 int icmp_source_quench_msg(int icmp_phone, packet_t *packet) 84 85 { 85 async_ msg_2(icmp_phone, NET_ICMP_SOURCE_QUENCH, 0,86 async_obsolete_msg_2(icmp_phone, NET_ICMP_SOURCE_QUENCH, 0, 86 87 (sysarg_t) packet_get_id(packet)); 87 88 return EOK; … … 103 104 int icmp_time_exceeded_msg(int icmp_phone, icmp_code_t code, packet_t *packet) 104 105 { 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, 106 107 (sysarg_t) packet_get_id(packet)); 107 108 return EOK; … … 125 126 icmp_param_t pointer, packet_t *packet) 126 127 { 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, 128 129 (sysarg_t) packet_get_id(packet), (sysarg_t) pointer); 129 130 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.