} else if (strcmp(token, "protocol=3.0") == 0) {
debugs(3, DBG_PARSE_NOTE(2), "WARNING: external_acl_type option protocol=3.0 is deprecated. Remove this from your config.");
a->quote = external_acl::QUOTE_METHOD_URL;
- } else if (strcmp(token, "protocol=3.4") == 0) {
- debugs(3, DBG_PARSE_NOTE(2), "WARNING: external_acl_type option protocol=3.4 is the default. Remove this from your config.");
- a->quote = external_acl::QUOTE_METHOD_URL;
} else if (strcmp(token, "quote=url") == 0) {
debugs(3, DBG_PARSE_NOTE(2), "WARNING: external_acl_type option quote=url is deprecated. Remove this from your config.");
a->quote = external_acl::QUOTE_METHOD_URL;
p->theHelper->addr = p->local_addr;
- if (p->quote == external_acl::QUOTE_METHOD_URL)
- p->theHelper->url_quoting = true;
-
helperOpenServers(p->theHelper);
}
class helper
{
public:
- inline helper(const char *name) : cmdline(NULL), id_name(name), eom('\n'), url_quoting(false) {}
+ inline helper(const char *name) : cmdline(NULL), id_name(name), eom('\n') {}
~helper();
public:
time_t last_queue_warn;
time_t last_restart;
char eom; ///< The char which marks the end of (response) message, normally '\n'
- bool url_quoting;
struct _stats {
int requests;