Commit 1b324b94 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Add vcl_discard{} method, which can return discard or pass actions.

This is for DES' work on LRU list.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@1548 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent c97b311c
......@@ -127,6 +127,9 @@ static const char *default_vcl =
" }\n"
" insert;\n"
"}\n"
"sub vcl_discard {\n"
" discard;\n"
"}\n"
"sub vcl_timeout {\n"
" discard;\n"
"}\n";
......
......@@ -39,4 +39,5 @@ struct VCL_conf {
vcl_func_f *hit_func;
vcl_func_f *fetch_func;
vcl_func_f *timeout_func;
vcl_func_f *discard_func;
};
......@@ -40,5 +40,6 @@ VCL_MET_MAC(miss,MISS,(VCL_RET_ERROR|VCL_RET_PASS|VCL_RET_FETCH))
VCL_MET_MAC(hit,HIT,(VCL_RET_ERROR|VCL_RET_PASS|VCL_RET_DELIVER))
VCL_MET_MAC(fetch,FETCH,(VCL_RET_ERROR|VCL_RET_PASS|VCL_RET_INSERT))
VCL_MET_MAC(timeout,TIMEOUT,(VCL_RET_FETCH|VCL_RET_DISCARD))
VCL_MET_MAC(discard,DISCARD,(VCL_RET_DISCARD|VCL_RET_PASS))
#endif
#define N_METHODS 8
#define N_METHODS 9
......@@ -350,6 +350,7 @@ vcl_output_lang_h(struct vsb *sb)
vsb_cat(sb, " vcl_func_f *hit_func;\n");
vsb_cat(sb, " vcl_func_f *fetch_func;\n");
vsb_cat(sb, " vcl_func_f *timeout_func;\n");
vsb_cat(sb, " vcl_func_f *discard_func;\n");
vsb_cat(sb, "};\n");
vsb_cat(sb, "/*-\n");
vsb_cat(sb, " * Copyright (c) 2006 Verdens Gang AS\n");
......@@ -470,10 +471,12 @@ vcl_output_lang_h(struct vsb *sb)
vsb_cat(sb, "void VRT_l_req_proto(struct sess *, const char *);\n");
vsb_cat(sb, "struct backend * VRT_r_req_backend(struct sess *);\n");
vsb_cat(sb, "void VRT_l_req_backend(struct sess *, struct backend *);\n");
vsb_cat(sb, "double VRT_r_obj_valid(struct sess *);\n");
vsb_cat(sb, "void VRT_l_obj_valid(struct sess *, double);\n");
vsb_cat(sb, "double VRT_r_obj_cacheable(struct sess *);\n");
vsb_cat(sb, "void VRT_l_obj_cacheable(struct sess *, double);\n");
vsb_cat(sb, "const char * VRT_r_req_hash(struct sess *);\n");
vsb_cat(sb, "void VRT_l_req_hash(struct sess *, const char *);\n");
vsb_cat(sb, "unsigned VRT_r_obj_valid(struct sess *);\n");
vsb_cat(sb, "void VRT_l_obj_valid(struct sess *, unsigned);\n");
vsb_cat(sb, "unsigned VRT_r_obj_cacheable(struct sess *);\n");
vsb_cat(sb, "void VRT_l_obj_cacheable(struct sess *, unsigned);\n");
vsb_cat(sb, "double VRT_r_obj_ttl(struct sess *);\n");
vsb_cat(sb, "void VRT_l_obj_ttl(struct sess *, double);\n");
vsb_cat(sb, "const char * VRT_r_req_http_(struct sess *);\n");
......
......@@ -42,6 +42,7 @@ set methods {
{hit {error pass deliver}}
{fetch {error pass insert}}
{timeout {fetch discard}}
{discard {discard pass}}
}
# These are the return actions
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment