1 /* $Id$ */
2 
3 /*
4 ** Copyright (C) 2014-2021 Cisco and/or its affiliates. All rights reserved.
5 ** Copyright (C) 2002-2013 Sourcefire, Inc.
6 ** Copyright (C) 1998-2002 Martin Roesch <roesch@sourcefire.com>
7 **
8 ** This program is free software; you can redistribute it and/or modify
9 ** it under the terms of the GNU General Public License Version 2 as
10 ** published by the Free Software Foundation.  You may not use, modify or
11 ** distribute this program under any other version of the GNU General
12 ** Public License.
13 **
14 ** This program is distributed in the hope that it will be useful,
15 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ** GNU General Public License for more details.
18 **
19 ** You should have received a copy of the GNU General Public License
20 ** along with this program; if not, write to the Free Software
21 ** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
22 */
23 
24 #ifndef __SP_REACT_H__
25 #define __SP_REACT_H__
26 
27 #ifdef ENABLE_REACT
28 void SetupReact(void);
29 void ReactFree(void *d);
30 uint32_t ReactHash(void *d);
31 int ReactCompare(void *l, void *r);
32 #endif  /* ENABLE_REACT */
33 
34 #endif  /* __SP_REACT_H__ */
35