SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
httplistenersettings.h
Go to the documentation of this file.
1 /*
2  * httplistenersettings.h
3  *
4  * Created on: Nov 13, 2017
5  * Author: f4exb
6  */
7 
8 #ifndef HTTPSERVER_HTTPLISTENERSETTINGS_H_
9 #define HTTPSERVER_HTTPLISTENERSETTINGS_H_
10 
11 namespace qtwebapp {
12 
14 {
15 public:
16  QString host;
17  int port;
22  QString sslKeyFile;
23  QString sslCertFile;
26 
29  }
30 
32  {
33  host = "192.168.0.100";
34  port = 8080;
35  minThreads = 1;
36  maxThreads = 100;
37  cleanupInterval = 1000;
38  readTimeout = 10000;
39  sslKeyFile = "";
40  sslCertFile = "";
41  maxRequestSize = 16000;
42  maxMultiPartSize = 1000000;
43  }
44 };
45 
46 } // end of namespace
47 
48 #endif /* HTTPSERVER_HTTPLISTENERSETTINGS_H_ */