cef_cookie_t

Cookie information.

Members

Variables

creation
cef_basetime_t creation;

The cookie creation date. This is automatically populated by the system on cookie creation.

domain
cef_string_t domain;

If |domain| is empty a host cookie will be created instead of a domain cookie. Domain cookies are stored with a leading "." and are visible to sub-domains whereas host cookies are not.

has_expires
int has_expires;

The cookie expiration date is only valid if |has_expires| is true.

httponly
int httponly;

If |httponly| is true the cookie will only be sent for HTTP requests.

last_access
cef_basetime_t last_access;

The cookie last access date. This is automatically populated by the system on access.

name
cef_string_t name;

The cookie name.

path
cef_string_t path;

If |path| is non-empty only URLs at or below the path will get the cookie value.

priority
cef_cookie_priority_t priority;

Priority.

same_site
cef_cookie_same_site_t same_site;

Same site.

secure
int secure;

If |secure| is true the cookie will only be sent for HTTPS requests.

value
cef_string_t value;

The cookie value.

Meta