xref: /aosp_15_r20/external/curl/docs/libcurl/opts/CURLOPT_COOKIESESSION.md (revision 6236dae45794135f37c4eb022389c904c8b0090d)
1*6236dae4SAndroid Build Coastguard Worker---
2*6236dae4SAndroid Build Coastguard Workerc: Copyright (C) Daniel Stenberg, <[email protected]>, et al.
3*6236dae4SAndroid Build Coastguard WorkerSPDX-License-Identifier: curl
4*6236dae4SAndroid Build Coastguard WorkerTitle: CURLOPT_COOKIESESSION
5*6236dae4SAndroid Build Coastguard WorkerSection: 3
6*6236dae4SAndroid Build Coastguard WorkerSource: libcurl
7*6236dae4SAndroid Build Coastguard WorkerSee-also:
8*6236dae4SAndroid Build Coastguard Worker  - CURLOPT_COOKIE (3)
9*6236dae4SAndroid Build Coastguard Worker  - CURLOPT_COOKIEFILE (3)
10*6236dae4SAndroid Build Coastguard Worker  - CURLOPT_COOKIEJAR (3)
11*6236dae4SAndroid Build Coastguard WorkerProtocol:
12*6236dae4SAndroid Build Coastguard Worker  - HTTP
13*6236dae4SAndroid Build Coastguard WorkerAdded-in: 7.9.7
14*6236dae4SAndroid Build Coastguard Worker---
15*6236dae4SAndroid Build Coastguard Worker
16*6236dae4SAndroid Build Coastguard Worker# NAME
17*6236dae4SAndroid Build Coastguard Worker
18*6236dae4SAndroid Build Coastguard WorkerCURLOPT_COOKIESESSION - start a new cookie session
19*6236dae4SAndroid Build Coastguard Worker
20*6236dae4SAndroid Build Coastguard Worker# SYNOPSIS
21*6236dae4SAndroid Build Coastguard Worker
22*6236dae4SAndroid Build Coastguard Worker~~~c
23*6236dae4SAndroid Build Coastguard Worker#include <curl/curl.h>
24*6236dae4SAndroid Build Coastguard Worker
25*6236dae4SAndroid Build Coastguard WorkerCURLcode curl_easy_setopt(CURL *handle, CURLOPT_COOKIESESSION, long init);
26*6236dae4SAndroid Build Coastguard Worker~~~
27*6236dae4SAndroid Build Coastguard Worker
28*6236dae4SAndroid Build Coastguard Worker# DESCRIPTION
29*6236dae4SAndroid Build Coastguard Worker
30*6236dae4SAndroid Build Coastguard WorkerPass a long set to 1 to mark this as a new cookie "session". It forces libcurl
31*6236dae4SAndroid Build Coastguard Workerto ignore all cookies it is about to load that are "session cookies" from the
32*6236dae4SAndroid Build Coastguard Workerprevious session. By default, libcurl always loads all cookies, independent if
33*6236dae4SAndroid Build Coastguard Workerthey are session cookies or not. Session cookies are cookies without expiry
34*6236dae4SAndroid Build Coastguard Workerdate and they are meant to be alive and existing for this "session" only.
35*6236dae4SAndroid Build Coastguard Worker
36*6236dae4SAndroid Build Coastguard WorkerA "session" is usually defined in browser land for as long as you have your
37*6236dae4SAndroid Build Coastguard Workerbrowser up, more or less. libcurl needs the application to use this option to
38*6236dae4SAndroid Build Coastguard Workertell it when a new session starts, otherwise it assumes everything is still in
39*6236dae4SAndroid Build Coastguard Workerthe same session.
40*6236dae4SAndroid Build Coastguard Worker
41*6236dae4SAndroid Build Coastguard Worker# DEFAULT
42*6236dae4SAndroid Build Coastguard Worker
43*6236dae4SAndroid Build Coastguard Worker0
44*6236dae4SAndroid Build Coastguard Worker
45*6236dae4SAndroid Build Coastguard Worker# %PROTOCOLS%
46*6236dae4SAndroid Build Coastguard Worker
47*6236dae4SAndroid Build Coastguard Worker# EXAMPLE
48*6236dae4SAndroid Build Coastguard Worker
49*6236dae4SAndroid Build Coastguard Worker~~~c
50*6236dae4SAndroid Build Coastguard Workerint main(void)
51*6236dae4SAndroid Build Coastguard Worker{
52*6236dae4SAndroid Build Coastguard Worker  CURL *curl = curl_easy_init();
53*6236dae4SAndroid Build Coastguard Worker  if(curl) {
54*6236dae4SAndroid Build Coastguard Worker    CURLcode res;
55*6236dae4SAndroid Build Coastguard Worker    curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/foo.bin");
56*6236dae4SAndroid Build Coastguard Worker
57*6236dae4SAndroid Build Coastguard Worker    /* new "session", do not load session cookies */
58*6236dae4SAndroid Build Coastguard Worker    curl_easy_setopt(curl, CURLOPT_COOKIESESSION, 1L);
59*6236dae4SAndroid Build Coastguard Worker
60*6236dae4SAndroid Build Coastguard Worker    /* get the (non session) cookies from this file */
61*6236dae4SAndroid Build Coastguard Worker    curl_easy_setopt(curl, CURLOPT_COOKIEFILE, "/tmp/cookies.txt");
62*6236dae4SAndroid Build Coastguard Worker
63*6236dae4SAndroid Build Coastguard Worker    res = curl_easy_perform(curl);
64*6236dae4SAndroid Build Coastguard Worker
65*6236dae4SAndroid Build Coastguard Worker    curl_easy_cleanup(curl);
66*6236dae4SAndroid Build Coastguard Worker  }
67*6236dae4SAndroid Build Coastguard Worker}
68*6236dae4SAndroid Build Coastguard Worker~~~
69*6236dae4SAndroid Build Coastguard Worker
70*6236dae4SAndroid Build Coastguard Worker# %AVAILABILITY%
71*6236dae4SAndroid Build Coastguard Worker
72*6236dae4SAndroid Build Coastguard Worker# RETURN VALUE
73*6236dae4SAndroid Build Coastguard Worker
74*6236dae4SAndroid Build Coastguard WorkerReturns CURLE_OK
75