Commit 508bf0f8 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Autogenerate prototypes for method calling functions


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@229 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 00d9862e
......@@ -188,10 +188,13 @@ void VSL(enum shmlogtag tag, unsigned id, const char *fmt, ...);
void RelVCL(struct VCL_conf *vc);
struct VCL_conf *GetVCL(void);
int CVCL_Load(const char *fn, const char *name);
void VCL_recv_method(struct sess *);
void VCL_hit_method(struct sess *);
void VCL_miss_method(struct sess *);
void VCL_fetch_method(struct sess *);
#define VCL_RET_MAC(l,u,b)
#define VCL_MET_MAC(l,u,b) void VCL_##l##_method(struct sess *);
#include "vcl_returns.h"
#undef VCL_MET_MAC
#undef VCL_RET_MAC
#ifdef CLI_PRIV_H
cli_func_t cli_func_config_list;
cli_func_t cli_func_config_load;
......
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