|
Kodi Documentation 18.0
Kodi is an open source media player and entertainment hub.
|
#include "WebServer.h"#include <algorithm>#include <memory>#include <stdexcept>#include <utility>#include "filesystem/File.h"#include "network/httprequesthandler/HTTPRequestHandlerUtils.h"#include "network/httprequesthandler/IHTTPRequestHandler.h"#include "settings/AdvancedSettings.h"#include "settings/Settings.h"#include "settings/SettingsComponent.h"#include "ServiceBroker.h"#include "threads/SingleLock.h"#include "Util.h"#include "utils/FileUtils.h"#include "utils/log.h"#include "utils/Mime.h"#include "utils/StringUtils.h"#include "utils/URIUtils.h"#include "utils/Variant.h"#include "XBDateTime.h"Classes | |
| struct | HttpFileDownloadContext |
Macros | |
| #define | MAX_POST_BUFFER_SIZE 2048 |
| #define | PAGE_FILE_NOT_FOUND "<html><head><title>File not found</title></head><body>File not found</body></html>" |
| #define | NOT_SUPPORTED "<html><head><title>Not Supported</title></head><body>The method you are trying to use is not supported by this server</body></html>" |
| #define | HEADER_VALUE_NO_CACHE "no-cache" |
| #define | HEADER_NEWLINE "\r\n" |
| #define HEADER_NEWLINE "\r\n" |
| #define HEADER_VALUE_NO_CACHE "no-cache" |
| #define MAX_POST_BUFFER_SIZE 2048 |
| #define NOT_SUPPORTED "<html><head><title>Not Supported</title></head><body>The method you are trying to use is not supported by this server</body></html>" |
| #define PAGE_FILE_NOT_FOUND "<html><head><title>File not found</title></head><body>File not found</body></html>" |