suricata
detect-metadata.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2010 Open Information Security Foundation
2  *
3  * You can copy, redistribute or modify this Program under the terms of
4  * the GNU General Public License version 2 as published by the Free
5  * Software Foundation.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * version 2 along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15  * 02110-1301, USA.
16  */
17 
18 /**
19  * \file
20  *
21  * \author Victor Julien <victor@inliniac.net>
22  */
23 
24 #ifndef SURICATA_DETECT_METADATA_H
25 #define SURICATA_DETECT_METADATA_H
26 
27 /**
28  * \brief Signature metadata list.
29  */
30 typedef struct DetectMetadata_ {
31  /* pointer to key stored in de_ctx hash table_metadata */
32  const char *key;
33  /* value data stored in de_ctx hash table_metadata */
34  const char *value;
35  /* next reference in the signature */
38 
39 typedef struct DetectMetadataHead {
40  char *json_str;
43 
44 /* prototypes */
45 void DetectMetadataRegister (void);
46 
48 
49 #endif /* SURICATA_DETECT_METADATA_H */
DetectMetadataHead::json_str
char * json_str
Definition: detect-metadata.h:40
DetectMetadata_::value
const char * value
Definition: detect-metadata.h:34
DetectMetadata_::key
const char * key
Definition: detect-metadata.h:32
DetectMetadataRegister
void DetectMetadataRegister(void)
Definition: detect-metadata.c:44
DetectMetadata
struct DetectMetadata_ DetectMetadata
Signature metadata list.
DetectMetadataHead
Definition: detect-metadata.h:39
DetectMetadataHead::list
DetectMetadata * list
Definition: detect-metadata.h:41
DetectMetadataHead
struct DetectMetadataHead DetectMetadataHead
DetectMetadata_
Signature metadata list.
Definition: detect-metadata.h:30
DetectMetadata_::next
struct DetectMetadata_ * next
Definition: detect-metadata.h:36
DetectMetadataFree
void DetectMetadataFree(DetectMetadata *mdata)
Free a Metadata object.
Definition: detect-metadata.c:60