Home
last modified time | relevance | path

Searched refs:mg_get_cookie (Results 1 – 12 of 12) sorted by relevance

/civetweb-2.7.6/unittest/
Dpublic_func.c247 ret = mg_get_cookie("", "notfound", NULL, 999); in START_TEST()
251 ret = mg_get_cookie("", "notfound", buf, 0); in START_TEST()
255 ret = mg_get_cookie("key=toooooooooolong", "key", buf, 4); in START_TEST()
259 ret = mg_get_cookie("", "notfound", buf, sizeof(buf)); in START_TEST()
262 ret = mg_get_cookie(longcookie, "notfound", buf, sizeof(buf)); in START_TEST()
266 ret = mg_get_cookie("key1=1; key2=2; key3=3", "notfound", buf, sizeof(buf)); in START_TEST()
271 ret = mg_get_cookie("key1=1; key2=2; key3=3", "key1", buf, sizeof(buf)); in START_TEST()
276 ret = mg_get_cookie("key1=1; key2=2; key3=3", "key2", buf, sizeof(buf)); in START_TEST()
281 ret = mg_get_cookie("key1=1; key2=2; key3=3", "key3", buf, sizeof(buf)); in START_TEST()
287 ret = mg_get_cookie(longcookie, "key7", buf, sizeof(buf)); in START_TEST()
[all …]
/civetweb-2.7.6/docs/api/
Dmg_get_cookie.md3 ### `mg_get_cookie( cookie, var_name, buf, buf_len );`
22 The function `mg_get_cookie()` tries to fetch the value of a certain cookie variable. The contents …
Dmg_get_var.md29 * [`mg_get_cookie();`](mg_get_cookie.md)
Dmg_get_var2.md30 * [`mg_get_cookie();`](mg_get_cookie.md)
/civetweb-2.7.6/docs/
DAPIReference.md106 * [`mg_get_cookie( cookie, var_name, buf, buf_len );`](api/mg_get_cookie.md)
/civetweb-2.7.6/examples/embedded_c/
Dembedded_c.c497 (void)mg_get_cookie(cookie, "first", first_str, sizeof(first_str)); in CookieHandler()
498 (void)mg_get_cookie(cookie, "count", count_str, sizeof(count_str)); in CookieHandler()
/civetweb-2.7.6/examples/_obsolete/chat/
Dchat.c63 mg_get_cookie(cookie, "session", session_id, sizeof(session_id)); in get_session()
/civetweb-2.7.6/include/
Dcivetweb.h1132 CIVETWEB_API int mg_get_cookie(const char *cookie,
/civetweb-2.7.6/src/
DCivetServer.cpp412 int lRead = mg_get_cookie(cookie, in getCookie()
Dmod_lua.inl1146 ret = mg_get_cookie(cookie, var_name, dst, data_len);
Dcivetweb.c7156 mg_get_cookie(const char *cookie_header, function
/civetweb-2.7.6/
DRELEASE_NOTES.md167 - Fix mg_get_cookie to ignore substrings