Searched refs:mg_get_cookie (Results 1 – 12 of 12) sorted by relevance
/civetweb-2.7.6/unittest/ |
D | public_func.c | 247 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/ |
D | mg_get_cookie.md | 3 ### `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 …
|
D | mg_get_var.md | 29 * [`mg_get_cookie();`](mg_get_cookie.md)
|
D | mg_get_var2.md | 30 * [`mg_get_cookie();`](mg_get_cookie.md)
|
/civetweb-2.7.6/docs/ |
D | APIReference.md | 106 * [`mg_get_cookie( cookie, var_name, buf, buf_len );`](api/mg_get_cookie.md)
|
/civetweb-2.7.6/examples/embedded_c/ |
D | embedded_c.c | 497 (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/ |
D | chat.c | 63 mg_get_cookie(cookie, "session", session_id, sizeof(session_id)); in get_session()
|
/civetweb-2.7.6/include/ |
D | civetweb.h | 1132 CIVETWEB_API int mg_get_cookie(const char *cookie,
|
/civetweb-2.7.6/src/ |
D | CivetServer.cpp | 412 int lRead = mg_get_cookie(cookie, in getCookie()
|
D | mod_lua.inl | 1146 ret = mg_get_cookie(cookie, var_name, dst, data_len);
|
D | civetweb.c | 7156 mg_get_cookie(const char *cookie_header, function
|
/civetweb-2.7.6/ |
D | RELEASE_NOTES.md | 167 - Fix mg_get_cookie to ignore substrings
|