mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-29 19:10:26 +00:00
LibC: Define ICMP header type constants in netinet/ip_icmp.h
Let's get rid of some magic numbers soon. :^)
This commit is contained in:
parent
412cb66666
commit
2b03e95354
Notes:
sideshowbarker
2024-07-18 22:29:37 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/2b03e95354e Pull-request: https://github.com/SerenityOS/serenity/pull/5268
1 changed files with 17 additions and 0 deletions
|
@ -44,4 +44,21 @@ struct icmphdr {
|
|||
} un;
|
||||
};
|
||||
|
||||
// clang-format off
|
||||
#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
|
||||
#define ICMP_TIME_EXCEEDED 11 // Time Rxceeded
|
||||
#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
|
||||
//clang-format on
|
||||
|
||||
__END_DECLS
|
||||
|
|
Loading…
Reference in a new issue