Commit 52a17692 authored by Geoff Simmons's avatar Geoff Simmons

remove remove_probe() from the interface -- VBP_Remove() throws an

assertion
parent 9a29f412
......@@ -322,19 +322,6 @@ vmod_delete(VRT_CTX, struct vmod_priv *priv, VCL_BACKEND be)
return 1;
}
VCL_BOOL
vmod_remove_probe(VRT_CTX, VCL_BACKEND be)
{
struct backend *backend;
backend = check_and_get_backend(ctx, be);
if (backend == NULL)
return 0;
if (backend->probe != NULL)
VBP_Remove(backend);
return 1;
}
static VCL_BOOL
control_probe(VRT_CTX, VCL_BACKEND be, int stop)
{
......
......@@ -25,8 +25,6 @@ $Function BACKEND by_name(PRIV_VCL, STRING name)
$Function BOOL delete(PRIV_VCL, BACKEND be)
$Function BOOL remove_probe(BACKEND be)
$Function BOOL stop_probe(BACKEND be)
$Function BOOL start_probe(BACKEND be)
......
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