suricata
detect-ssl-state.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 Anoop Saldanha <anoopsaldanha@gmail.com>
22  */
23 
24 #ifndef DETECT_SSL_STATE_H
25 #define DETECT_SSL_STATE_H
26 
27 
28 /* we pick these flags flags from the parser */
29 #define DETECT_SSL_STATE_CLIENT_HELLO SSL_AL_FLAG_STATE_CLIENT_HELLO
30 #define DETECT_SSL_STATE_SERVER_HELLO SSL_AL_FLAG_STATE_SERVER_HELLO
31 #define DETECT_SSL_STATE_CLIENT_KEYX SSL_AL_FLAG_STATE_CLIENT_KEYX
32 #define DETECT_SSL_STATE_SERVER_KEYX SSL_AL_FLAG_STATE_SERVER_KEYX
33 #define DETECT_SSL_STATE_UNKNOWN SSL_AL_FLAG_STATE_UNKNOWN
34 
35 typedef struct DetectSslStateData_ {
36  uint32_t flags;
37  uint32_t mask;
39 
40 void DetectSslStateRegister(void);
41 
42 #endif /* DETECT_SSL_STATE_H */
DetectSslStateData_::mask
uint32_t mask
Definition: detect-ssl-state.h:37
DetectSslStateRegister
void DetectSslStateRegister(void)
Registers the keyword handlers for the "ssl_state" keyword.
Definition: detect-ssl-state.c:73
DetectSslStateData_::flags
uint32_t flags
Definition: detect-ssl-state.h:36
DetectSslStateData
struct DetectSslStateData_ DetectSslStateData
DetectSslStateData_
Definition: detect-ssl-state.h:35