mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
7dfb9f1967
* initial commit of webconfig * update example config with webconfig and fix format of file update debian postinst script for install example config
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
#ifndef QTHTTPHEADER_H
|
|
#define QTHTTPHEADER_H
|
|
|
|
class QByteArray;
|
|
|
|
class QtHttpHeader {
|
|
public:
|
|
static const QByteArray & Server;
|
|
static const QByteArray & Date;
|
|
static const QByteArray & Host;
|
|
static const QByteArray & Accept;
|
|
static const QByteArray & ContentType;
|
|
static const QByteArray & ContentLength;
|
|
static const QByteArray & Connection;
|
|
static const QByteArray & Cookie;
|
|
static const QByteArray & UserAgent;
|
|
static const QByteArray & AcceptCharset;
|
|
static const QByteArray & AcceptEncoding;
|
|
static const QByteArray & AcceptLanguage;
|
|
static const QByteArray & Authorization;
|
|
static const QByteArray & CacheControl;
|
|
static const QByteArray & ContentMD5;
|
|
static const QByteArray & ProxyAuthorization;
|
|
static const QByteArray & Range;
|
|
static const QByteArray & ContentEncoding;
|
|
static const QByteArray & ContentLanguage;
|
|
static const QByteArray & ContentLocation;
|
|
static const QByteArray & ContentRange;
|
|
static const QByteArray & Expires;
|
|
static const QByteArray & LastModified;
|
|
static const QByteArray & Location;
|
|
static const QByteArray & SetCookie;
|
|
static const QByteArray & TransferEncoding;
|
|
static const QByteArray & ContentDisposition;
|
|
};
|
|
|
|
#endif // QTHTTPHEADER_H
|