Enumeration
SoupCookieJarAcceptPolicy
Members
Name | Description |
---|---|
SOUP_COOKIE_JAR_ACCEPT_ALWAYS |
Accept all cookies unconditionally. |
SOUP_COOKIE_JAR_ACCEPT_NEVER |
Reject all cookies unconditionally. |
SOUP_COOKIE_JAR_ACCEPT_NO_THIRD_PARTY |
Accept all cookies set by the main
document loaded in the application using libsoup. An example of the most
common case, web browsers, would be: If http://www.example.com is the page
loaded, accept all cookies set by example.com, but if a resource from
http://www.third-party.com is loaded from that page reject any cookie that
it could try to set. For libsoup to be able to tell apart first party
cookies from the rest, the application must call
|
SOUP_COOKIE_JAR_ACCEPT_GRANDFATHERED_THIRD_PARTY |
Accept all cookies set by
the main document loaded in the application using libsoup, and from domains
that have previously set at least one cookie when loaded as the main
document. An example of the most common case, web browsers, would be: if
http://www.example.com is the page loaded, accept all cookies set by
example.com, but if a resource from http://www.third-party.com is loaded
from that page, reject any cookie that it could try to set unless it
already has a cookie in the cookie jar. For libsoup to be able to tell
apart first party cookies from the rest, the application must call
|