You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
suricata/src/decode-icmpv6.h

19 lines
316 B
C

/* Copyright (c) 2008 Victor Julien <victor@inliniac.net> */
#ifndef __DECODE_ICMPV6_H__
#define __DECODE_ICMPV6_H__
#define ICMPV6_HEADER_LEN 8
typedef struct _ICMPV6Hdr
{
u_int8_t type;
u_int8_t code;
u_int16_t csum;
/* XXX incomplete */
} ICMPV6Hdr;
#endif /* __DECODE_ICMPV6_H__ */