2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2019-03-12 15:51:42 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
2019-10-11 10:50:42 +01:00
|
|
|
#include <bits/stdint.h>
|
2019-05-28 11:53:16 +02:00
|
|
|
#include <sys/cdefs.h>
|
2019-03-12 15:51:42 +01:00
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
|
|
struct icmphdr {
|
|
|
|
|
uint8_t type;
|
|
|
|
|
uint8_t code;
|
|
|
|
|
uint16_t checksum;
|
|
|
|
|
union {
|
|
|
|
|
struct {
|
|
|
|
|
uint16_t id;
|
|
|
|
|
uint16_t sequence;
|
|
|
|
|
} echo;
|
|
|
|
|
uint32_t gateway;
|
|
|
|
|
} un;
|
|
|
|
|
};
|
|
|
|
|
|
2021-02-08 19:24:03 +01:00
|
|
|
#define ICMP_ECHOREPLY 0 // Echo Reply
|
|
|
|
|
#define ICMP_DEST_UNREACH 3 // Destination Unreachable
|
|
|
|
|
#define ICMP_SOURCE_QUENCH 4 // Source Quench
|
|
|
|
|
#define ICMP_REDIRECT 5 // Redirect
|
|
|
|
|
#define ICMP_ECHO 8 // Echo Request
|
2021-02-14 18:01:35 +01:00
|
|
|
#define ICMP_TIME_EXCEEDED 11 // Time Exceeded
|
2021-02-08 19:24:03 +01:00
|
|
|
#define ICMP_PARAMETERPROB 12 // Parameter Problem
|
|
|
|
|
#define ICMP_TIMESTAMP 13 // Timestamp Request
|
|
|
|
|
#define ICMP_TIMESTAMPREPLY 14 // Timestamp Reply
|
|
|
|
|
#define ICMP_INFO_REQUEST 15 // Information Request
|
|
|
|
|
#define ICMP_INFO_REPLY 16 // Information Reply
|
|
|
|
|
#define ICMP_ADDRESS 17 // Address Mask Request
|
|
|
|
|
#define ICMP_ADDRESSREPLY 18 // Address Mask Reply
|
|
|
|
|
#define NR_ICMP_TYPES 18
|
|
|
|
|
|
2019-03-12 15:51:42 +01:00
|
|
|
__END_DECLS
|