Update and clean Tomato RAF files
[tomato.git] / release / src / router / nginx / src / core / ngx_regex.h
blob680486c816fe0df244c9f97da5b1df9a42c4e0bc
2 /*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) Nginx, Inc.
5 */
8 #ifndef _NGX_REGEX_H_INCLUDED_
9 #define _NGX_REGEX_H_INCLUDED_
12 #include <ngx_config.h>
13 #include <ngx_core.h>
15 #include <pcre.h>
18 #define NGX_REGEX_NO_MATCHED PCRE_ERROR_NOMATCH /* -1 */
20 #define NGX_REGEX_CASELESS PCRE_CASELESS
23 typedef struct {
24 pcre *code;
25 pcre_extra *extra;
26 } ngx_regex_t;
29 typedef struct {
30 ngx_str_t pattern;
31 ngx_pool_t *pool;
32 ngx_int_t options;
34 ngx_regex_t *regex;
35 int captures;
36 int named_captures;
37 int name_size;
38 u_char *names;
39 ngx_str_t err;
40 } ngx_regex_compile_t;
43 typedef struct {
44 ngx_regex_t *regex;
45 u_char *name;
46 } ngx_regex_elt_t;
49 void ngx_regex_init(void);
50 ngx_int_t ngx_regex_compile(ngx_regex_compile_t *rc);
52 #define ngx_regex_exec(re, s, captures, size) \
53 pcre_exec(re->code, re->extra, (const char *) (s)->data, (s)->len, 0, 0, \
54 captures, size)
55 #define ngx_regex_exec_n "pcre_exec()"
57 ngx_int_t ngx_regex_exec_array(ngx_array_t *a, ngx_str_t *s, ngx_log_t *log);
60 #endif /* _NGX_REGEX_H_INCLUDED_ */