Changeset 3aae4e8 in mainline for uspace/lib/net/include/icmp_interface.h
- Timestamp:
- 2010-04-04T22:07:05Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 23de644
- Parents:
- 9f10660f (diff), 73060801 (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 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/icmp_interface.h
r9f10660f r3aae4e8 43 43 #include <sys/types.h> 44 44 45 #include "device.h" 46 47 #include "../structures/measured_strings.h" 48 #include "../structures/packet/packet.h" 49 50 #include "inet.h" 51 #include "ip_codes.h" 52 #include "socket_codes.h" 53 54 #include "icmp_codes.h" 55 #include "icmp_common.h" 45 #include <net_device.h> 46 #include <adt/measured_strings.h> 47 #include <packet/packet.h> 48 #include <inet.h> 49 #include <ip_codes.h> 50 #include <socket_codes.h> 51 #include <icmp_codes.h> 52 #include <icmp_common.h> 56 53 57 54 /** @name ICMP module interface … … 71 68 * @returns ENOMEM if there is not enough memory left. 72 69 */ 73 int icmp_destination_unreachable_msg(int icmp_phone, icmp_code_t code, icmp_param_t mtu, packet_t packet);70 extern int icmp_destination_unreachable_msg(int icmp_phone, icmp_code_t code, icmp_param_t mtu, packet_t packet); 74 71 75 72 /** Sends the Source Quench error notification packet. … … 82 79 * @returns ENOMEM if there is not enough memory left. 83 80 */ 84 int icmp_source_quench_msg(int icmp_phone, packet_t packet);81 extern int icmp_source_quench_msg(int icmp_phone, packet_t packet); 85 82 86 83 /** Sends the Time Exceeded error notification packet. … … 94 91 * @returns ENOMEM if there is not enough memory left. 95 92 */ 96 int icmp_time_exceeded_msg(int icmp_phone, icmp_code_t code, packet_t packet);93 extern int icmp_time_exceeded_msg(int icmp_phone, icmp_code_t code, packet_t packet); 97 94 98 95 /** Sends the Parameter Problem error notification packet. … … 107 104 * @returns ENOMEM if there is not enough memory left. 108 105 */ 109 int icmp_parameter_problem_msg(int icmp_phone, icmp_code_t code, icmp_param_t pointer, packet_t packet);106 extern int icmp_parameter_problem_msg(int icmp_phone, icmp_code_t code, icmp_param_t pointer, packet_t packet); 110 107 111 108 /*@}*/
Note:
See TracChangeset
for help on using the changeset viewer.