summaryrefslogtreecommitdiffstats
path: root/xbmc/filesystem
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2018-01-01 13:40:09 +0100
committermanuel <manuel@mausz.at>2018-01-01 13:40:09 +0100
commit4830f27a40323fe859dc166337a2b861877b7121 (patch)
tree39e9f712a5415ec0026c3914f4bf600b2f679287 /xbmc/filesystem
parent0afb1d4d51973cf52973617c92236d851a039d31 (diff)
downloadkodi-pvr-build-4830f27a40323fe859dc166337a2b861877b7121.tar.gz
kodi-pvr-build-4830f27a40323fe859dc166337a2b861877b7121.tar.bz2
kodi-pvr-build-4830f27a40323fe859dc166337a2b861877b7121.zip
sync with upstream
Diffstat (limited to 'xbmc/filesystem')
-rw-r--r--xbmc/filesystem/.IFileTypes.h.swpbin12288 -> 0 bytes
-rw-r--r--xbmc/filesystem/IFileTypes.h23
2 files changed, 21 insertions, 2 deletions
diff --git a/xbmc/filesystem/.IFileTypes.h.swp b/xbmc/filesystem/.IFileTypes.h.swp
deleted file mode 100644
index 1880359..0000000
--- a/xbmc/filesystem/.IFileTypes.h.swp
+++ /dev/null
Binary files differ
diff --git a/xbmc/filesystem/IFileTypes.h b/xbmc/filesystem/IFileTypes.h
index d5dd218..a65a178 100644
--- a/xbmc/filesystem/IFileTypes.h
+++ b/xbmc/filesystem/IFileTypes.h
@@ -78,18 +78,37 @@ typedef enum {
78enum CURLOPTIONTYPE 78enum CURLOPTIONTYPE
79{ 79{
80 CURL_OPTION_OPTION, /**< Set a general option */ 80 CURL_OPTION_OPTION, /**< Set a general option */
81 CURL_OPTION_PROTOCOL, /**< Set a protocol option */ 81 CURL_OPTION_PROTOCOL, /**< Set a protocol option (see below) */
82 CURL_OPTION_CREDENTIALS,/**< Set User and password */ 82 CURL_OPTION_CREDENTIALS,/**< Set User and password */
83 CURL_OPTION_HEADER /**< Add a Header */ 83 CURL_OPTION_HEADER /**< Add a Header */
84}; 84};
85 85
86/**
87 * The following names for CURL_OPTION_PROTOCOL are possible:
88 *
89 * accept-charset: Set the "accept-charset" header
90 * acceptencoding or encoding: Set the "accept-encoding" header
91 * active-remote: Set the "active-remote" header
92 * auth: Set the authentication method. Possible values: any, anysafe, digest, ntlm
93 * connection-timeout: Set the connection timeout in seconds
94 * cookie: Set the "cookie" header
95 * customrequest: Set a custom HTTP request like DELETE
96 * noshout: Set to true if kodi detects a stream as shoutcast by mistake.
97 * postdata: Set the post body (value needs to be base64 encoded). (Implicitly sets the request to POST)
98 * referer: Set the "referer" header
99 * user-agent: Set the "user-agent" header
100 * seekable: Set the stream seekable. 1: enable, 0: disable
101 * sslcipherlist: Set list of accepted SSL ciphers.
102 */
103
86enum FileProperty 104enum FileProperty
87{ 105{
88 FILE_PROPERTY_RESPONSE_PROTOCOL, /**< Get response protocol line */ 106 FILE_PROPERTY_RESPONSE_PROTOCOL, /**< Get response protocol line */
89 FILE_PROPERTY_RESPONSE_HEADER, /**< Get response Header value */ 107 FILE_PROPERTY_RESPONSE_HEADER, /**< Get response Header value */
90 FILE_PROPERTY_CONTENT_TYPE, /**< Get file content-type */ 108 FILE_PROPERTY_CONTENT_TYPE, /**< Get file content-type */
91 FILE_PROPERTY_CONTENT_CHARSET, /**< Get file content charset */ 109 FILE_PROPERTY_CONTENT_CHARSET, /**< Get file content charset */
92 FILE_PROPERTY_MIME_TYPE /**< Get file mime type */ 110 FILE_PROPERTY_MIME_TYPE, /**< Get file mime type */
111 FILE_PROPERTY_EFFECTIVE_URL /**< Get effective URL for redirected streams */
93}; 112};
94 113
95} 114}