Commit ef865c23 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Give cacher private cli functions a private prefix of "ccf" instead

of overloading common cli function namespace "cli_func".


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2596 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent b8c018c8
...@@ -415,8 +415,8 @@ void VBE_SelectBackend(struct sess *sp); ...@@ -415,8 +415,8 @@ void VBE_SelectBackend(struct sess *sp);
/* cache_ban.c */ /* cache_ban.c */
void AddBan(const char *, int hash); void AddBan(const char *, int hash);
void BAN_Init(void); void BAN_Init(void);
void cli_func_url_purge(struct cli *cli, const char * const *av, void *priv); void ccf_url_purge(struct cli *cli, const char * const *av, void *priv);
void cli_func_hash_purge(struct cli *cli, const char * const *av, void *priv); void ccf_hash_purge(struct cli *cli, const char * const *av, void *priv);
void BAN_NewObj(struct object *o); void BAN_NewObj(struct object *o);
int BAN_CheckObject(struct object *o, const char *url, const char *hash); int BAN_CheckObject(struct object *o, const char *url, const char *hash);
...@@ -559,10 +559,10 @@ void VCL_Idle(void); ...@@ -559,10 +559,10 @@ void VCL_Idle(void);
#undef VCL_RET_MAC #undef VCL_RET_MAC
#ifdef CLI_PRIV_H #ifdef CLI_PRIV_H
cli_func_t cli_func_config_list; cli_func_t ccf_config_list;
cli_func_t cli_func_config_load; cli_func_t ccf_config_load;
cli_func_t cli_func_config_discard; cli_func_t ccf_config_discard;
cli_func_t cli_func_config_use; cli_func_t ccf_config_use;
#endif #endif
/* cache_vrt_esi.c */ /* cache_vrt_esi.c */
......
...@@ -104,7 +104,7 @@ BAN_CheckObject(struct object *o, const char *url, const char *hash) ...@@ -104,7 +104,7 @@ BAN_CheckObject(struct object *o, const char *url, const char *hash)
} }
void void
cli_func_url_purge(struct cli *cli, const char * const *av, void *priv) ccf_url_purge(struct cli *cli, const char * const *av, void *priv)
{ {
(void)priv; (void)priv;
...@@ -113,7 +113,7 @@ cli_func_url_purge(struct cli *cli, const char * const *av, void *priv) ...@@ -113,7 +113,7 @@ cli_func_url_purge(struct cli *cli, const char * const *av, void *priv)
} }
void void
cli_func_hash_purge(struct cli *cli, const char * const *av, void *priv) ccf_hash_purge(struct cli *cli, const char * const *av, void *priv)
{ {
(void)priv; (void)priv;
......
...@@ -75,7 +75,7 @@ cli_debug_sizeof(struct cli *cli, const char * const *av, void *priv) ...@@ -75,7 +75,7 @@ cli_debug_sizeof(struct cli *cli, const char * const *av, void *priv)
/*--------------------------------------------------------------------*/ /*--------------------------------------------------------------------*/
static void static void
cli_func_start(struct cli *cli, const char * const *av, void *priv) ccf_start(struct cli *cli, const char * const *av, void *priv)
{ {
(void)cli; (void)cli;
...@@ -98,20 +98,20 @@ static void ccf_help(struct cli *cli, const char * const *av, void *priv); ...@@ -98,20 +98,20 @@ static void ccf_help(struct cli *cli, const char * const *av, void *priv);
static struct cli_proto master_cmds[] = { static struct cli_proto master_cmds[] = {
{ CLI_PING, cli_func_ping }, { CLI_PING, cli_func_ping },
{ CLI_SERVER_START, cli_func_start }, { CLI_SERVER_START, ccf_start },
{ CLI_VCL_LOAD, cli_func_config_load }, { CLI_VCL_LOAD, ccf_config_load },
{ CLI_VCL_LIST, cli_func_config_list }, { CLI_VCL_LIST, ccf_config_list },
{ CLI_VCL_DISCARD, cli_func_config_discard }, { CLI_VCL_DISCARD, ccf_config_discard },
{ CLI_VCL_USE, cli_func_config_use }, { CLI_VCL_USE, ccf_config_use },
{ NULL } { NULL }
}; };
static struct cli_proto cacher_cmds[] = { static struct cli_proto cacher_cmds[] = {
{ CLI_HELP, ccf_help, NULL }, { CLI_HELP, ccf_help, NULL },
{ CLI_URL_PURGE, cli_func_url_purge }, { CLI_URL_PURGE, ccf_url_purge },
{ CLI_HASH_PURGE, cli_func_hash_purge }, { CLI_HASH_PURGE, ccf_hash_purge },
#if 0 #if 0
{ CLI_URL_QUERY, cli_func_url_query }, { CLI_URL_QUERY, ccf_url_query },
#endif #endif
{ NULL } { NULL }
}; };
......
...@@ -209,7 +209,7 @@ VCL_Idle(void) ...@@ -209,7 +209,7 @@ VCL_Idle(void)
/*--------------------------------------------------------------------*/ /*--------------------------------------------------------------------*/
void void
cli_func_config_list(struct cli *cli, const char * const *av, void *priv) ccf_config_list(struct cli *cli, const char * const *av, void *priv)
{ {
struct vcls *vcl; struct vcls *vcl;
...@@ -225,7 +225,7 @@ cli_func_config_list(struct cli *cli, const char * const *av, void *priv) ...@@ -225,7 +225,7 @@ cli_func_config_list(struct cli *cli, const char * const *av, void *priv)
} }
void void
cli_func_config_load(struct cli *cli, const char * const *av, void *priv) ccf_config_load(struct cli *cli, const char * const *av, void *priv)
{ {
(void)av; (void)av;
...@@ -237,7 +237,7 @@ cli_func_config_load(struct cli *cli, const char * const *av, void *priv) ...@@ -237,7 +237,7 @@ cli_func_config_load(struct cli *cli, const char * const *av, void *priv)
} }
void void
cli_func_config_discard(struct cli *cli, const char * const *av, void *priv) ccf_config_discard(struct cli *cli, const char * const *av, void *priv)
{ {
struct vcls *vcl; struct vcls *vcl;
...@@ -264,7 +264,7 @@ cli_func_config_discard(struct cli *cli, const char * const *av, void *priv) ...@@ -264,7 +264,7 @@ cli_func_config_discard(struct cli *cli, const char * const *av, void *priv)
} }
void void
cli_func_config_use(struct cli *cli, const char * const *av, void *priv) ccf_config_use(struct cli *cli, const char * const *av, void *priv)
{ {
struct vcls *vcl; struct vcls *vcl;
......
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