diff options
author | Michael Brown <mcb30@ipxe.org> | 2013-10-21 14:10:07 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2013-10-21 15:08:12 +0100 |
commit | 5c2ffc26cc9b73ef60cbd123cd90f499dc01bbc2 (patch) | |
tree | 5dc77a8f4b54549e1468ecf93d1cd5cc454f6e60 /src/net/ipv4.c | |
parent | 12605efded6928add185d8d9666b4be9a67b7945 (diff) | |
download | ipxe-5c2ffc26cc9b73ef60cbd123cd90f499dc01bbc2.tar.gz |
[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 <mcb30@ipxe.org>
Diffstat (limited to 'src/net/ipv4.c')
-rw-r--r-- | src/net/ipv4.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 ); |