Home
last modified time | relevance | path

Searched refs:httponly (Results 1 – 14 of 14) sorted by relevance

/external/curl/tests/data/
Dtest3132 Set-Cookie: httpo1=value1 ; domain=127.0.0.1; path=/p1/; httponly
33 Set-Cookie: httpo2=value2 ; domain=127.0.0.1; path=/p2/; httponly=
34 Set-Cookie: httpo3=value3 ; httponly; domain=127.0.0.1; path=/p3/;
35 Set-Cookie: httpo4=value4 ; httponly=; domain=127.0.0.1; path=/p4/;
36 Set-Cookie: httponly=myvalue1 ; domain=127.0.0.1; path=/p4/; httponly
37 Set-Cookie: httpandsec=myvalue2 ; domain=127.0.0.1; path=/p4/; httponly; secure
38 Set-Cookie: httpandsec2=myvalue3; domain=127.0.0.1; path=/p4/; httponly=; secure
39 Set-Cookie: httpandsec3=myvalue4 ; domain=127.0.0.1; path=/p4/; httponly; secure=
40 Set-Cookie: httpandsec4=myvalue5 ; domain=127.0.0.1; path=/p4/; httponly=; secure=
41 Set-Cookie: httpandsec5=myvalue6 ; domain=127.0.0.1; path=/p4/; secure; httponly=
[all …]
Dtest156138 Set-Cookie: super=secret; domain=example.com; path=/1561; httponly;
39 Set-Cookie: super=secret; domain=example.com; path=/1561/; httponly;
40 Set-Cookie: super=secret; domain=example.com; path=/15; httponly;
Dtest619 httponly
20 Set-Cookie: test=yes; httponly; domain=foo.com; expires=Fri Feb 13 11:56:27 GMT 2037
Dtest12588 httponly
Dtest628 httponly
/external/curl/lib/
Dcookie.h45 bool httponly; /* true if the httponly directive is present */ member
Dcookie.c578 co->httponly = TRUE; in Curl_cookie_add()
790 co->httponly = TRUE; in Curl_cookie_add()
1275 d->httponly = src->httponly; in dup_cookie()
1510 co->httponly?"#HttpOnly_":"", in get_netscape_format()
/external/python/cpython2/Doc/library/
Dcookie.rst174 * ``httponly``
176 The attribute :attr:`httponly` specifies that the cookie is only transferred
183 The :attr:`httponly` attribute was added.
/external/python/cpython3/Doc/library/
Dhttp.cookies.rst139 * ``httponly``
141 The attribute :attr:`httponly` specifies that the cookie is only transferred
/external/python/cpython2/Misc/NEWS.d/
D2.6rc1.rst238 Cookie.Morsel gained the httponly attribute.
D2.7.9rc1.rst801 BaseCookie now parses 'secure' and 'httponly' flags. Backport of issue
/external/python/cpython2/Doc/whatsnew/
D2.6.rst1900 :attr:`httponly` attribute. In some browsers. cookies with this attribute
/external/python/cpython3/Doc/whatsnew/
D2.6.rst1904 :attr:`httponly` attribute. In some browsers. cookies with this attribute
/external/python/cpython3/Misc/
DHISTORY4130 - Issue #16611: http.cookie now correctly parses the 'secure' and 'httponly'