diff options
Diffstat (limited to 'xbmc/filesystem')
| -rw-r--r-- | xbmc/filesystem/.IFileTypes.h.swp | bin | 12288 -> 0 bytes | |||
| -rw-r--r-- | xbmc/filesystem/IFileTypes.h | 23 |
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 { | |||
| 78 | enum CURLOPTIONTYPE | 78 | enum 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 | |||
| 86 | enum FileProperty | 104 | enum 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 | } |
