Lines Matching refs:name
168 * with the real cookie name set by the user in httpd.conf, or with the
275 * we need to compile the regexp for the default cookie name. */
358 const char *name)
362 dcfg->cookie_name = name;
364 set_and_comp_regexp(dcfg, cmd->pool, name);
370 return apr_pstrcat(cmd->pool, "Invalid cookie name \"",
371 name, "\"", NULL);
381 const char *name)
390 if (!name[0]) {
393 if (name[0] != '.') {
396 if (ap_strchr_c(&name[1], '.') == NULL) {
400 dcfg->cookie_domain = name;
408 const char *name)
414 if (strcasecmp(name, "Netscape") == 0) {
417 else if ((strcasecmp(name, "Cookie") == 0)
418 || (strcasecmp(name, "RFC2109") == 0)) {
421 else if ((strcasecmp(name, "Cookie2") == 0)
422 || (strcasecmp(name, "RFC2965") == 0)) {
427 cmd->cmd->name, name);
443 "name of the tracking cookie"),