1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 14:04:46 -04:00

HttpServer: use settings structures in place of QSettings

This commit is contained in:
f4exb
2017-11-13 01:01:15 +01:00
parent bc793b4095
commit 9a77311b2a
7 changed files with 165 additions and 2 deletions
+39
View File
@@ -0,0 +1,39 @@
/*
* httpdocrootsettings.h
*
* Created on: Nov 13, 2017
* Author: f4exb
*/
#ifndef HTTPSERVER_HTTPDOCROOTSETTINGS_H_
#define HTTPSERVER_HTTPDOCROOTSETTINGS_H_
namespace qtwebapp {
struct HttpDocrootSettings
{
QString path;
QString encoding;
int maxAge;
int cacheTime;
int cacheSize;
int maxCachedFileSize;
HttpDocrootSettings() {
resetToDefaults();
}
void resetToDefaults()
{
path = ".";
encoding = "UTF-8";
maxAge = 60000;
cacheTime = 60000;
cacheSize = 1000000;
maxCachedFileSize = 65536;
}
};
} // end of namespace
#endif /* HTTPSERVER_HTTPDOCROOTSETTINGS_H_ */