mirror of https://github.com/OISF/suricata
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.
20 lines
372 B
C
20 lines
372 B
C
16 years ago
|
/**
|
||
|
* Copyright (c) 2009 Open Information Security Foundation
|
||
|
*
|
||
|
* \file detect-icmp-id.h
|
||
|
* \author Gerardo Iglesias Galvan <iglesiasg@gmail.com>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __DETECT_ICMP_ID_H__
|
||
|
#define __DETECT_ICMP_ID_H__
|
||
|
|
||
|
typedef struct DetectIcmpIdData_ {
|
||
|
uint16_t id;
|
||
|
} DetectIcmpIdData;
|
||
|
|
||
|
/* prototypes */
|
||
|
void DetectIcmpIdRegister(void);
|
||
|
|
||
|
#endif /* __DETECT_ICMP_ID__ */
|