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.

58 lines
2.0 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. /*
  2. * Copyright (c) 2011 and 2012, Dustin Lundquist <dustin@null-ptr.net>
  3. * Copyright (c) 2011 Manuel Kasper <mk@neon1.net>
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions are met:
  8. *
  9. * 1. Redistributions of source code must retain the above copyright notice,
  10. * this list of conditions and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
  19. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  20. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  21. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  22. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  23. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  24. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  25. * POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. #ifndef RULE_H
  28. #define RULE_H
  29. #ifdef HAVE_CONFIG_H
  30. #include "config.h"
  31. #endif
  32. #include <libcork/ds.h>
  33. #ifdef HAVE_PCRE_H
  34. #include <pcre.h>
  35. #elif HAVE_PCRE_PCRE_H
  36. #include <pcre/pcre.h>
  37. #endif
  38. typedef struct rule {
  39. char *pattern;
  40. /* Runtime fields */
  41. pcre *pattern_re;
  42. struct cork_dllist_item entries;
  43. } rule_t;
  44. void add_rule(struct cork_dllist *, rule_t *);
  45. int init_rule(rule_t *);
  46. rule_t *lookup_rule(const struct cork_dllist *, const char *, size_t);
  47. void remove_rule(rule_t *);
  48. rule_t *new_rule();
  49. int accept_rule_arg(rule_t *, const char *);
  50. #endif