Ignore:
Timestamp:
01/28/08 15:00:33 (4 years ago)
Author:
Tomash Brechko <tomash.brechko@…>
Branches:
master-v0.7, gunzip, master-v0.6, memcached_gzip, upstream_count_limit
Children:
233310, a63858
Parents:
a64318
git-author:
Tomash Brechko <tomash.brechko@…> (01/28/08 15:00:33)
git-committer:
Tomash Brechko <tomash.brechko@…> (01/28/08 15:00:33)
Message:

Backport ngx_http_gzip_ok() from 0.6.24.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/src/core/ngx_regex.h

    r0019fc r5af58e  
    2121typedef pcre  ngx_regex_t; 
    2222 
     23typedef struct { 
     24    ngx_regex_t   *regex; 
     25    u_char        *name; 
     26} ngx_regex_elt_t; 
     27 
     28 
    2329void ngx_regex_init(void); 
    2430ngx_regex_t *ngx_regex_compile(ngx_str_t *pattern, ngx_int_t options, 
     
    2733ngx_int_t ngx_regex_exec(ngx_regex_t *re, ngx_str_t *s, int *captures, 
    2834    ngx_int_t size); 
     35ngx_int_t ngx_regex_exec_array(ngx_array_t *a, ngx_str_t *s, ngx_log_t *log); 
     36 
    2937 
    3038#define ngx_regex_exec_n           "pcre_exec()" 
Note: See TracChangeset for help on using the changeset viewer.