Changes in uspace/lib/net/tl/icmp_remote.c [1bfd3d3:96b02eb9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/tl/icmp_remote.c
r1bfd3d3 r96b02eb9 63 63 int 64 64 icmp_destination_unreachable_msg(int icmp_phone, icmp_code_t code, 65 icmp_param_t mtu, packet_t packet)65 icmp_param_t mtu, packet_t *packet) 66 66 { 67 async_msg_3(icmp_phone, NET_ICMP_DEST_UNREACH, ( ipcarg_t) code,68 ( ipcarg_t) packet_get_id(packet), (ipcarg_t) mtu);67 async_msg_3(icmp_phone, NET_ICMP_DEST_UNREACH, (sysarg_t) code, 68 (sysarg_t) packet_get_id(packet), (sysarg_t) mtu); 69 69 return EOK; 70 70 } … … 82 82 * @return ENOMEM if there is not enough memory left. 83 83 */ 84 int icmp_source_quench_msg(int icmp_phone, packet_t packet)84 int icmp_source_quench_msg(int icmp_phone, packet_t *packet) 85 85 { 86 86 async_msg_2(icmp_phone, NET_ICMP_SOURCE_QUENCH, 0, 87 ( ipcarg_t) packet_get_id(packet));87 (sysarg_t) packet_get_id(packet)); 88 88 return EOK; 89 89 } … … 102 102 * @return ENOMEM if there is not enough memory left. 103 103 */ 104 int icmp_time_exceeded_msg(int icmp_phone, icmp_code_t code, packet_t packet)104 int icmp_time_exceeded_msg(int icmp_phone, icmp_code_t code, packet_t *packet) 105 105 { 106 async_msg_2(icmp_phone, NET_ICMP_TIME_EXCEEDED, ( ipcarg_t) code,107 ( ipcarg_t) packet_get_id(packet));106 async_msg_2(icmp_phone, NET_ICMP_TIME_EXCEEDED, (sysarg_t) code, 107 (sysarg_t) packet_get_id(packet)); 108 108 return EOK; 109 109 } … … 124 124 */ 125 125 int icmp_parameter_problem_msg(int icmp_phone, icmp_code_t code, 126 icmp_param_t pointer, packet_t packet)126 icmp_param_t pointer, packet_t *packet) 127 127 { 128 async_msg_3(icmp_phone, NET_ICMP_PARAMETERPROB, ( ipcarg_t) code,129 ( ipcarg_t) packet_get_id(packet), (ipcarg_t) pointer);128 async_msg_3(icmp_phone, NET_ICMP_PARAMETERPROB, (sysarg_t) code, 129 (sysarg_t) packet_get_id(packet), (sysarg_t) pointer); 130 130 return EOK; 131 131 }
Note:
See TracChangeset
for help on using the changeset viewer.