summaryrefslogtreecommitdiff
path: root/gpxe/src/include/gpxe/icmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'gpxe/src/include/gpxe/icmp.h')
-rw-r--r--gpxe/src/include/gpxe/icmp.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/gpxe/src/include/gpxe/icmp.h b/gpxe/src/include/gpxe/icmp.h
deleted file mode 100644
index bb8fce8b..00000000
--- a/gpxe/src/include/gpxe/icmp.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef _GPXE_ICMP_H
-#define _GPXE_ICMP_H
-
-/** @file
- *
- * ICMP protocol
- *
- */
-
-FILE_LICENCE ( GPL2_OR_LATER );
-
-/** An ICMP header */
-struct icmp_header {
- /** Type */
- uint8_t type;
- /** Code */
- uint8_t code;
- /** Checksum */
- uint16_t chksum;
-} __attribute__ (( packed ));
-
-#define ICMP_ECHO_RESPONSE 0
-#define ICMP_ECHO_REQUEST 8
-
-#endif /* _GPXE_ICMP_H */