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.
31 lines
738 B
C
31 lines
738 B
C
15 years ago
|
/*
|
||
|
* Copyright (c) 2009,2010 Open Information Security Foundation
|
||
|
* app-layer-dcerpc.h
|
||
|
*
|
||
|
* \author Kirby Kuehl <kkuehl@gmail.com>
|
||
|
*/
|
||
|
|
||
|
#ifndef APPLAYERDCERPCUDP_H_
|
||
|
#define APPLAYERDCERPCUDP_H_
|
||
|
#include "app-layer-protos.h"
|
||
|
#include "app-layer-parser.h"
|
||
|
#include "app-layer-dcerpc-common.h"
|
||
|
#include "flow.h"
|
||
|
#include "queue.h"
|
||
|
#include "util-byte.h"
|
||
|
|
||
|
typedef struct DCERPCUDPState_ {
|
||
|
DCERPCUDP dcerpc;
|
||
|
uint16_t bytesprocessed;
|
||
|
uint16_t fraglenleft;
|
||
|
uint8_t *frag_data;
|
||
|
DCERPCUuidEntry *uuid_entry;
|
||
|
TAILQ_HEAD(, DCERPCUuidEntry_) uuid_list;
|
||
|
}DCERPCUDPState;
|
||
|
|
||
|
void RegisterDCERPCUDPParsers(void);
|
||
|
void DCERPCUDPParserTests(void);
|
||
|
void DCERPCUDPParserRegisterTests(void);
|
||
|
|
||
|
#endif /* APPLAYERDCERPCUDP_H_ */
|