/httpd/modules/session/ |
H A D | mod_session_cookie.c | 42 * Set the cookie and embed the session within it. 45 * the cookie specified in SessionCookieName, and an RFC2965 compliant 46 * Set-Cookie2 header for the cookie specified in SessionCookieName2. 48 * If specified, the optional cookie attributes will be added to 49 * each cookie. If defaults are not specified, DEFAULT_ATTRS 66 /* create RFC2109 compliant cookie */ 79 /* create RFC2965 compliant cookie */ 100 * Isolate the cookie with the name "name", and if present, extract 101 * the payload from the cookie. 103 * If the cookie i 219 char *cookie = apr_strtok(line, " \\t", &last); local 235 char *cookie = apr_strtok(line, " \\t", &last); local [all...] |
H A D | mod_session_dbd.c | 154 * the cookie specified. Failing that, the session key will be extracted 178 /* is our session in a cookie? */ 203 /* load an RFC2109 or RFC2965 compliant cookie */ 387 * If the session is anonymous, save the session and write a cookie 438 /* create RFC2109 compliant cookie */ 444 /* create RFC2965 compliant cookie */ 570 char *cookie = apr_strtok(line, " \t", &last); local 571 conf->name = cookie; 577 return check_string(cmd, cookie); 585 char *cookie local [all...] |
/httpd/server/ |
H A D | apreq_module_custom.c | 257 const char *cookie, 276 if (cookie != NULL) { 279 apreq_parse_cookie_header(pool, req->jar, cookie); 255 apreq_handle_custom(apr_pool_t *pool, const char *query_string, const char *cookie, apreq_parser_t *parser, apr_uint64_t read_limit, apr_bucket_brigade *in) argument
|
H A D | util_cookies.c | 31 * Write an RFC2109 compliant cookie. 34 * @param name The name of the cookie. 35 * @param val The value to place in the cookie. 36 * @param attrs The string containing additional cookie attributes. If NULL, the 38 * @param maxage If non zero, a Max-Age header will be added to the cookie. 55 /* create RFC2109 compliant cookie */ 59 "user '%s' set cookie: '%s'", r->user, rfc2109); 61 /* write the cookie to the header table(s) provided */ 73 * Write an RFC2965 compliant cookie. 76 * @param name2 The name of the cookie 180 char *cookie = apr_pstrdup(v->r->pool, val); local [all...] |
/httpd/include/ |
H A D | apreq_module.h | 69 /** get a cookie by its name */ 126 * Expose the parsed "cookie" header associated to this handle. 172 * Fetch the first cookie with the given name. 175 * @param name Case-insensitive cookie name. 177 * @return First matching cookie, or NULL if none match. 203 * @param name Case-insensitive cookie name. 397 * @param cookie value of the request "Cookie" header 406 const char *cookie, 423 * Find the first cookie with the specified name. 427 * @param name desired cookie nam [all...] |
/httpd/modules/mappers/ |
H A D | mod_rewrite.c | 209 /* max cookie size in rfc 2109 */ 210 /* XXX: not used at all. We should do a check somewhere and/or cut the cookie */ 323 data_item *cookie; /* added cookies */ member in struct:__anon238 2510 char *cookie; local 2553 cookie = apr_pstrcat(rmain->pool, 2573 apr_table_addn(rmain->err_headers_out, "Set-Cookie", cookie); 2575 rewritelog((rmain, 5, NULL, "setting cookie '%s'", cookie)); 2578 rewritelog((rmain, 5, NULL, "skipping already set cookie '%s'", 2586 static void do_expand_cookie(data_item *cookie, rewrite_ct argument [all...] |
/httpd/modules/proxy/ |
H A D | mod_proxy_balancer.c | 186 * Session cookie was found, get its value 188 char *end_cookie, *cookie; local 189 cookie = apr_pstrdup(r->pool, start_cookie); 190 if ((end_cookie = strchr(cookie, ';')) != NULL) 192 if((end_cookie = strchr(cookie, ',')) != NULL) 194 return cookie; 305 /* We have a route in path or in cookie
|
/httpd/support/ |
H A D | ab.c | 288 const char *cookie, /* optional cookie line */ variable 1733 cookie, auth, hdrs); 1746 cookie, auth, 1973 fprintf(stderr, " -C attribute Add cookie, eg. 'Apache=1234'. (repeatable)\n"); 2138 cookie = ""; 2249 cookie = apr_pstrcat(cntxt, "Cookie: ", opt_arg, "\r\n", NULL);
|
/httpd/modules/lua/ |
H A D | lua_request.c | 2002 const char *key, *cookie; local 2005 cookie = NULL; 2006 ap_cookie_read(r, key, &cookie, 0); 2007 if (cookie != NULL) { 2008 lua_pushstring(L, cookie);
|
/httpd/modules/loggers/ |
H A D | mod_log_config.c | 79 * %...{FOOBAR}C: The contents of the HTTP cookie FOOBAR 575 * - case-insensitive match of cookie names 578 * - quoted strings as cookie values 583 char *cookie, *last1, *last2; local 586 while ((cookie = apr_strtok(cookies, ";", &last1))) { 587 char *name = apr_strtok(cookie, "=", &last2);
|