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 37 additions and 0 deletions
Showing only changes of commit 2e8d29e208 - Show all commits

View file

@ -116,6 +116,7 @@ set(PROJECT_SOURCES
modules/warnlists/modules/warnlist_item.h
modules/warnlists/modules/warnlist_item.cpp
modules/craplog/lib.h
modules/craplog/craplog.h
modules/craplog/craplog.cpp
modules/craplog/modules/lib.h

View file

@ -0,0 +1,36 @@
#ifndef LOGDOCTOR__CRAPLOG__LIB_H
#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
};
Q_DECLARE_METATYPE(LogField)
#endif // LOGDOCTOR__CRAPLOG__LIB_H