Commit 9ac381b8 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp Committed by Tollef Fog Heen

Document vcl_init{} and vcl_fini{}

Fixes	#990
parent 1e4f08ae
......@@ -62,7 +62,9 @@ depending on context one of
* error
* fetch
* hash
* hit_for_pass
* lookup
* ok
* pass
* pipe
* restart
......@@ -382,6 +384,15 @@ decide how the request should be handled. Each subroutine terminates
by calling one of a small number of keywords which indicates the
desired outcome.
vcl_init
Called when VCL is loaded, before any requests pass through it.
Typically used to initialize VMODs.
return() values:
ok
Normal return, VCL continues loading.
vcl_recv
Called at the beginning of a request, after the complete request has
been received and parsed. Its purpose is to decide whether or not
......@@ -545,6 +556,16 @@ vcl_error
of restarts is higher than *max_restarts* varnish emits a guru meditation
error.
vcl_fini
Called when VCL is discarded only after all requests have exited the VCL.
Typically used to clean up VMODs.
return() values:
ok
Normal return, VCL will be discarded.
If one of these subroutines is left undefined or terminates without
reaching a handling decision, control will be handed over to the
builtin default. See the EXAMPLES section for a listing of the
......
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