1 /* -*- coding: utf-8 -*-
2  * ----------------------------------------------------------------------
3  * Copyright © 2012, RedJack, LLC.
4  * All rights reserved.
5  *
6  * Please see the LICENSE.txt file in this distribution for license
7  * details.
8  * ----------------------------------------------------------------------
9  */
10 
11 #ifndef IPSET_ERRORS_H
12 #define IPSET_ERRORS_H
13 
14 
15 #include <libcork/core.h>
16 
17 
18 /*-----------------------------------------------------------------------
19  * Error reporting
20  */
21 
22 /* Hash of "ipset.h" */
23 #define IPSET_ERROR  0xf2000181
24 
25 enum ipset_error {
26     IPSET_IO_ERROR,
27     IPSET_PARSE_ERROR
28 };
29 
30 
31 #endif  /* IPSET_ERRORS_H */
32