Version upgrade 4.00 #45

Merged
elB4RTO merged 113 commits from devel into main 2024-02-17 16:13:26 +01:00
2 changed files with 32 additions and 0 deletions
Showing only changes of commit 45b944de1c - Show all commits

View file

@ -139,6 +139,7 @@ set(PROJECT_SOURCES
modules/craplog/modules/workers/parser.cpp
modules/craplog/modules/workers/impl/loglinedata.cpp
modules/crapview/lib.h
modules/crapview/crapview.h
modules/crapview/crapview.cpp
modules/crapview/modules/lib.h

View file

@ -0,0 +1,31 @@
#ifndef LOGDOCTOR__CRAPVIEW__LIB_H
#define LOGDOCTOR__CRAPVIEW__LIB_H
#include <QMetaType>
enum class LogField
{
Warning,
// request
Protocol,
Method,
Uri,
Query,
// server
ResponseCode,
TimeTaken,
BytesSent,
BytesReceived,
// client
Client,
Cookie,
UserAgent,
Referrer
};
Q_DECLARE_METATYPE(LogField)
#endif // LOGDOCTOR__CRAPVIEW__LIB_H