]> git.mxchange.org Git - friendica.git/blob - src/Network/HTTPClient/Client/HttpClientOptions.php
Merge pull request #11457 from annando/performance
[friendica.git] / src / Network / HTTPClient / Client / HttpClientOptions.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Network\HTTPClient\Client;
23
24 use GuzzleHttp\RequestOptions;
25
26 /**
27  * This class contains a list of possible HTTPClient request options.
28  */
29 class HttpClientOptions
30 {
31         /**
32          * accept_content: (array) supply Accept: header with 'accept_content' as the value
33          */
34         const ACCEPT_CONTENT = 'accept_content';
35         /**
36          * timeout: (int) out in seconds, default system config value or 60 seconds
37          */
38         const TIMEOUT = RequestOptions::TIMEOUT;
39         /**
40          * cookiejar: (string) path to cookie jar file
41          */
42         const COOKIEJAR = 'cookiejar';
43         /**
44          * headers: (array) header array
45          */
46         const HEADERS = RequestOptions::HEADERS;
47         /**
48          * header: (array) header array (legacy version)
49          */
50         const LEGACY_HEADER = 'header';
51         /**
52          * content_length: (int) maximum File content length
53          */
54         const CONTENT_LENGTH = 'content_length';
55         /**
56          * body: (mixed) Setting the body for sending data
57          */
58         const BODY = RequestOptions::BODY;
59         /**
60          * auth: (array) Authentication settings for specific requests
61          */
62         const AUTH = RequestOptions::AUTH;
63 }