Improvements

Introduced IISLogsModule enum
This commit is contained in:
Valentino Orlandi 2024-02-09 16:22:57 +01:00
parent fa8468eb06
commit 4553524962
Signed by: elB4RTO
GPG Key ID: 1719E976DB2D4E71
1 changed files with 4 additions and 28 deletions

View File

@ -2,35 +2,11 @@
#define LOGDOCTOR__CRAPLOG__LIB_H
#include <QMetaType>
enum class LogField
{
Year,
Month,
Day,
Hour,
Minute,
Second,
// request
Protocol,
Method,
Uri,
Query,
// server
ResponseCode,
TimeTaken,
BytesSent,
BytesReceived,
// client
Client,
Cookie,
UserAgent,
Referrer
enum class IISLogsModule : unsigned char {
W3C = 0,
NCSA = 1,
IIS = 2
};
Q_DECLARE_METATYPE(LogField)
#endif // LOGDOCTOR__CRAPLOG__LIB_H