You can not 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
647 B

10 years ago
  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. #ifndef IPSET_ERRORS_H
  11. #define IPSET_ERRORS_H
  12. #include <libcork/core.h>
  13. /*-----------------------------------------------------------------------
  14. * Error reporting
  15. */
  16. /* Hash of "ipset.h" */
  17. #define IPSET_ERROR 0xf2000181
  18. enum ipset_error {
  19. IPSET_IO_ERROR,
  20. IPSET_PARSE_ERROR
  21. };
  22. #endif /* IPSET_ERRORS_H */