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.
74 lines
2.0 KiB
C
74 lines
2.0 KiB
C
/* Copyright (C) 2015-2018 Open Information Security Foundation
|
|
*
|
|
* You can copy, redistribute or modify this Program under the terms of
|
|
* the GNU General Public License version 2 as published by the Free
|
|
* Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* version 2 along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301, USA.
|
|
*/
|
|
|
|
/**
|
|
* \file
|
|
*
|
|
* \author FirstName LastName <yourname@domain>
|
|
*/
|
|
|
|
#ifndef __APP_LAYER_TEMPLATE_H__
|
|
#define __APP_LAYER_TEMPLATE_H__
|
|
|
|
#include "detect-engine-state.h"
|
|
|
|
#include "queue.h"
|
|
|
|
void RegisterTemplateParsers(void);
|
|
void TemplateParserRegisterTests(void);
|
|
|
|
typedef struct TemplateTransaction
|
|
{
|
|
/** Internal transaction ID. */
|
|
uint64_t tx_id;
|
|
|
|
/** Application layer events that occurred
|
|
* while parsing this transaction. */
|
|
AppLayerDecoderEvents *decoder_events;
|
|
|
|
uint8_t *request_buffer;
|
|
uint32_t request_buffer_len;
|
|
|
|
/** flags indicating which loggers that have logged */
|
|
LoggerId logged;
|
|
|
|
uint8_t *response_buffer;
|
|
uint32_t response_buffer_len;
|
|
|
|
uint8_t response_done; /*<< Flag to be set when the response is
|
|
* seen. */
|
|
|
|
DetectEngineState *de_state;
|
|
|
|
TAILQ_ENTRY(TemplateTransaction) next;
|
|
|
|
} TemplateTransaction;
|
|
|
|
typedef struct TemplateState {
|
|
|
|
/** List of Template transactions associated with this
|
|
* state. */
|
|
TAILQ_HEAD(, TemplateTransaction) tx_list;
|
|
|
|
/** A count of the number of transactions created. The
|
|
* transaction ID for each transaction is allocted
|
|
* by incrementing this value. */
|
|
uint64_t transaction_max;
|
|
} TemplateState;
|
|
|
|
#endif /* __APP_LAYER_TEMPLATE_H__ */
|