Searched defs:cookie (Results 1 - 9 of 9) sorted by relevance

/httpd/server/
H A Dutil_cookies.c31 * 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...]
H A Dapreq_module_custom.c257 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
/httpd/modules/session/
H A Dmod_session_cookie.c42 * 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 Dmod_session_dbd.c154 * 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/modules/proxy/
H A Dmod_proxy_balancer.c186 * 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/modules/loggers/
H A Dmod_log_config.c79 * %...{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);
/httpd/modules/lua/
H A Dlua_request.c2002 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/support/
H A Dab.c288 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/mappers/
H A Dmod_rewrite.c209 /* 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...]

Completed in 3988 milliseconds