12 lines
180 B
C
12 lines
180 B
C
#ifndef __ICMP_H
|
|
#define __ICMP_H
|
|
|
|
struct icmp_header_t {
|
|
unsigned char type;
|
|
unsigned char code;
|
|
unsigned short checksum;
|
|
unsigned int rest;
|
|
}__attribute__((packed));
|
|
|
|
#endif
|