quinn-os/icmp.h
2015-09-05 12:48:48 +10:00

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