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.
13 lines
305 B
C
13 lines
305 B
C
/* Copyright (c) 2008 Victor Julien <victor@inliniac.net> */
|
|
|
|
#ifndef __RESPOND_REJECT_H__
|
|
#define __RESPOND_REJECT_H__
|
|
|
|
#define REJECT_DIR_SRC 0
|
|
#define REJECT_DIR_DST 1
|
|
|
|
void TmModuleRespondRejectRegister (void);
|
|
int RespondRejectFunc(ThreadVars *, Packet *, void *);
|
|
|
|
#endif /* __RESPOND_REJECT_H__ */
|