summaryrefslogtreecommitdiffstats
path: root/src/net/ipv4.c
diff options
context:
space:
mode:
authorMichael Brown2009-02-17 07:59:15 +0100
committerMichael Brown2009-02-17 07:59:15 +0100
commit06b5132fdcac6b79ccf2f97de658235b28610bd7 (patch)
tree0cc30bc01362f054109ef2b029f54cc4989f9a18 /src/net/ipv4.c
parent[comboot] Implement INT 22h AX=001Bh (Cleanup, shuffle, and boot to real mode) (diff)
downloadipxe-06b5132fdcac6b79ccf2f97de658235b28610bd7.tar.gz
ipxe-06b5132fdcac6b79ccf2f97de658235b28610bd7.tar.xz
ipxe-06b5132fdcac6b79ccf2f97de658235b28610bd7.zip
[icmp] Add support for responding to pings
Diffstat (limited to 'src/net/ipv4.c')
-rw-r--r--src/net/ipv4.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/net/ipv4.c b/src/net/ipv4.c
index 335048c8..8668d44b 100644
--- a/src/net/ipv4.c
+++ b/src/net/ipv4.c
@@ -627,3 +627,6 @@ static int ipv4_create_routes ( void ) {
struct settings_applicator ipv4_settings_applicator __settings_applicator = {
.apply = ipv4_create_routes,
};
+
+/* Drag in ICMP */
+REQUIRE_OBJECT ( icmp );