From 5c2ffc26cc9b73ef60cbd123cd90f499dc01bbc2 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Mon, 21 Oct 2013 14:10:07 +0100 Subject: [icmp] Add support for sending ICMP echo requests Merge common functionality between IPv4 and IPv6 ICMP echo handling, and add support for transmitting ICMP echo requests and delivering ICMP echo replies to a (not yet implemented) ping_rx() function. Signed-off-by: Michael Brown --- src/net/ipv4.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/net/ipv4.c') diff --git a/src/net/ipv4.c b/src/net/ipv4.c index 7956d18b2..438fe9ac5 100644 --- a/src/net/ipv4.c +++ b/src/net/ipv4.c @@ -669,5 +669,5 @@ struct settings_applicator ipv4_settings_applicator __settings_applicator = { .apply = ipv4_create_routes, }; -/* Drag in ICMP */ -REQUIRE_OBJECT ( icmp ); +/* Drag in ICMPv4 */ +REQUIRE_OBJECT ( icmpv4 ); -- cgit