comparison src/http/modules/ngx_http_flv_module.c @ 441:fd759445d8a8 NGINX_0_7_28

nginx 0.7.28 *) Change: in memory allocation in the ngx_http_gzip_filter_module. *) Change: the default "gzip_buffers" directive values have been changed to 32 4k or 16 8k from 4 4k/8k.
author Igor Sysoev <http://sysoev.ru>
date Mon, 22 Dec 2008 00:00:00 +0300
parents 79c5df00501e
children ce4f9ff90bfa
comparison
equal deleted inserted replaced
440:e2c4e8b635a8 441:fd759445d8a8
58 58
59 59
60 static ngx_int_t 60 static ngx_int_t
61 ngx_http_flv_handler(ngx_http_request_t *r) 61 ngx_http_flv_handler(ngx_http_request_t *r)
62 { 62 {
63 u_char *p, *n, *last; 63 u_char *last;
64 off_t start, len; 64 off_t start, len;
65 size_t root; 65 size_t root;
66 ngx_int_t rc; 66 ngx_int_t rc;
67 ngx_uint_t level, i; 67 ngx_uint_t level, i;
68 ngx_str_t path; 68 ngx_str_t path, value;
69 ngx_log_t *log; 69 ngx_log_t *log;
70 ngx_buf_t *b; 70 ngx_buf_t *b;
71 ngx_chain_t out[2]; 71 ngx_chain_t out[2];
72 ngx_open_file_info_t of; 72 ngx_open_file_info_t of;
73 ngx_http_core_loc_conf_t *clcf; 73 ngx_http_core_loc_conf_t *clcf;
165 start = 0; 165 start = 0;
166 len = of.size; 166 len = of.size;
167 i = 1; 167 i = 1;
168 168
169 if (r->args.len) { 169 if (r->args.len) {
170 p = (u_char *) ngx_strnstr(r->args.data, "start=", r->args.len); 170
171 171 if (ngx_http_arg(r, (u_char *) "start", 5, &value) == NGX_OK) {
172 if (p) { 172
173 p += 6; 173 start = ngx_atoof(value.data, value.len);
174
175 for (n = p; n < r->args.data + r->args.len; n++) {
176 if (*n == '&') {
177 break;
178 }
179 }
180
181 start = ngx_atoof(p, n - p);
182 174
183 if (start == NGX_ERROR || start >= len) { 175 if (start == NGX_ERROR || start >= len) {
184 start = 0; 176 start = 0;
185 } 177 }
186 178