00001 /* 00002 * Copyright 2009 DreamLab Onet.pl Sp. z o.o. 00003 * Licensed under the Apache License, Version 2.0 (the "License"); 00004 * you may not use this file except in compliance with the License. 00005 * You may obtain a copy of the License at 00006 * 00007 * http://www.apache.org/licenses/LICENSE-2.0 00008 * 00009 * Unless required by applicable law or agreed to in writing, software 00010 * distributed under the License is distributed on an "AS IS" BASIS, 00011 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00012 * See the License for the specific language governing permissions and 00013 * limitations under the License. 00014 * 00015 * 00016 * Authors: 00017 * Przemyslaw Gajda, email: quermit(malpa)gmail.com 00018 * Piotr Janik, email: janik.piotrek(malpa)gmail.com 00019 * malpa = @ 00020 */ 00021 00022 #ifndef NGX_HTTP_XXSLT_UDATA_H_ 00023 #define NGX_HTTP_XXSLT_UDATA_H_ 00024 00025 #include <ngx_config.h> 00026 #include <ngx_core.h> 00027 #include <ngx_http.h> 00028 00030 typedef struct { 00031 ngx_int_t id; 00032 ngx_http_request_t *r; 00033 00035 ngx_chain_t *buffer_chain; /* bufor */ 00037 ngx_chain_t *buffer_chain_tail; 00038 00040 ngx_int_t res_len; 00041 00043 ngx_uint_t done; /* unsigned done:1; */ 00044 } ngx_http_xxslt_unknown_data_t; 00045 00046 ngx_http_xxslt_unknown_data_t * 00047 ngx_http_xxslt_unknown_create_new(ngx_http_request_t *r); 00048 ngx_int_t 00049 ngx_http_xxslt_unknown_add_data_chunk(ngx_http_xxslt_unknown_data_t *data, ngx_chain_t *in); 00050 00051 #endif /* NGX_HTTP_XXSLT_UDATA_H_ */