comparison src/http/modules/ngx_http_dav_module.c @ 358:9121a0a91f47 NGINX_0_6_23

nginx 0.6.23 *) Change: the "off" parameter in the "ssl_session_cache" directive; now this is default parameter. *) Change: the "open_file_cache_retest" directive was renamed to the "open_file_cache_valid". *) Feature: the "open_file_cache_min_uses" directive. *) Feature: the ngx_http_gzip_static_module. *) Feature: the "gzip_disable" directive. *) Feature: the "memcached_pass" directive may be used inside the "if" block. *) Bugfix: a segmentation fault occurred in worker process, if the "memcached_pass" and "if" directives were used in the same location. *) Bugfix: if a "satisfy_any on" directive was used and not all access and auth modules directives were set, then other given access and auth directives were not tested; *) Bugfix: regex parameters in a "valid_referers" directive were not inherited from previous level. *) Bugfix: a "post_action" directive did run if a request was completed with 499 status code. *) Bugfix: optimization of 16K buffer usage in a SSL connection. Thanks to Ben Maurer. *) Bugfix: the STARTTLS in SMTP mode did not work. Thanks to Oleg Motienko. *) Bugfix: in HTTPS mode requests might fail with the "bad write retry" error; bug appeared in 0.5.13.
author Igor Sysoev <http://sysoev.ru>
date Thu, 27 Dec 2007 00:00:00 +0300
parents b743d290eb3b
children 54fad6c4b555
comparison
equal deleted inserted replaced
357:16d557a75356 358:9121a0a91f47
35 static ngx_int_t ngx_http_dav_handler(ngx_http_request_t *r); 35 static ngx_int_t ngx_http_dav_handler(ngx_http_request_t *r);
36 36
37 static void ngx_http_dav_put_handler(ngx_http_request_t *r); 37 static void ngx_http_dav_put_handler(ngx_http_request_t *r);
38 38
39 static ngx_int_t ngx_http_dav_delete_handler(ngx_http_request_t *r); 39 static ngx_int_t ngx_http_dav_delete_handler(ngx_http_request_t *r);
40 static ngx_int_t ngx_http_dav_no_init(void *ctx, void *prev);
41 static ngx_int_t ngx_http_dav_noop(ngx_tree_ctx_t *ctx, ngx_str_t *path); 40 static ngx_int_t ngx_http_dav_noop(ngx_tree_ctx_t *ctx, ngx_str_t *path);
42 static ngx_int_t ngx_http_dav_delete_dir(ngx_tree_ctx_t *ctx, ngx_str_t *path); 41 static ngx_int_t ngx_http_dav_delete_dir(ngx_tree_ctx_t *ctx, ngx_str_t *path);
43 static ngx_int_t ngx_http_dav_delete_file(ngx_tree_ctx_t *ctx, ngx_str_t *path); 42 static ngx_int_t ngx_http_dav_delete_file(ngx_tree_ctx_t *ctx, ngx_str_t *path);
44 43
45 static ngx_int_t ngx_http_dav_mkcol_handler(ngx_http_request_t *r, 44 static ngx_int_t ngx_http_dav_mkcol_handler(ngx_http_request_t *r,
407 return rc; 406 return rc;
408 } 407 }
409 408
410 409
411 static ngx_int_t 410 static ngx_int_t
412 ngx_http_dav_no_init(void *ctx, void *prev)
413 {
414 return NGX_OK;
415 }
416
417
418 static ngx_int_t
419 ngx_http_dav_noop(ngx_tree_ctx_t *ctx, ngx_str_t *path) 411 ngx_http_dav_noop(ngx_tree_ctx_t *ctx, ngx_str_t *path)
420 { 412 {
421 return NGX_OK; 413 return NGX_OK;
422 } 414 }
423 415
708 ngx_create_dir_n, copy.path.data); 700 ngx_create_dir_n, copy.path.data);
709 } 701 }
710 702
711 copy.len = path.len; 703 copy.len = path.len;
712 704
713 tree.init_handler = ngx_http_dav_no_init; 705 tree.init_handler = NULL;
714 tree.file_handler = ngx_http_dav_copy_file; 706 tree.file_handler = ngx_http_dav_copy_file;
715 tree.pre_tree_handler = ngx_http_dav_copy_dir; 707 tree.pre_tree_handler = ngx_http_dav_copy_dir;
716 tree.post_tree_handler = ngx_http_dav_copy_dir_time; 708 tree.post_tree_handler = ngx_http_dav_copy_dir_time;
717 tree.spec_handler = ngx_http_dav_noop; 709 tree.spec_handler = ngx_http_dav_noop;
718 tree.data = &copy; 710 tree.data = &copy;
958 char *failed; 950 char *failed;
959 ngx_tree_ctx_t tree; 951 ngx_tree_ctx_t tree;
960 952
961 if (dir) { 953 if (dir) {
962 954
963 tree.init_handler = ngx_http_dav_no_init; 955 tree.init_handler = NULL;
964 tree.file_handler = ngx_http_dav_delete_file; 956 tree.file_handler = ngx_http_dav_delete_file;
965 tree.pre_tree_handler = ngx_http_dav_noop; 957 tree.pre_tree_handler = ngx_http_dav_noop;
966 tree.post_tree_handler = ngx_http_dav_delete_dir; 958 tree.post_tree_handler = ngx_http_dav_delete_dir;
967 tree.spec_handler = ngx_http_dav_delete_file; 959 tree.spec_handler = ngx_http_dav_delete_file;
968 tree.data = NULL; 960 tree.data = NULL;