comparison src/http/modules/perl/nginx.xs @ 603:858700ae46b4 release-0.3.23

nginx-0.3.23-RELEASE import *) Feature: the "optimize_host_names" directive. *) Bugfix: in using of the variables in the "path" and "alias" directives. *) Bugfix: the ngx_http_perl_module was incorrectly built on Linux and Solaris.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 24 Jan 2006 16:08:27 +0000
parents 77f77f53214a
children c73c5c58c619
comparison
equal deleted inserted replaced
602:0d42d54505f2 603:858700ae46b4
3 * Copyright (C) Igor Sysoev 3 * Copyright (C) Igor Sysoev
4 */ 4 */
5 5
6 6
7 #define PERL_NO_GET_CONTEXT 7 #define PERL_NO_GET_CONTEXT
8
9 #include "EXTERN.h"
10 #include "perl.h"
11 #include "XSUB.h"
12 8
13 #include <ngx_config.h> 9 #include <ngx_config.h>
14 #include <ngx_core.h> 10 #include <ngx_core.h>
15 #include <ngx_http.h> 11 #include <ngx_http.h>
16 #include <ngx_http_perl_module.h> 12 #include <ngx_http_perl_module.h>
13
14 #include "XSUB.h"
17 15
18 16
19 static ngx_int_t 17 static ngx_int_t
20 ngx_http_perl_sv2str(pTHX_ ngx_http_request_t *r, ngx_str_t *s, SV *sv) 18 ngx_http_perl_sv2str(pTHX_ ngx_http_request_t *r, ngx_str_t *s, SV *sv)
21 { 19 {