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.
httpsessionssettings.h
Go to the documentation of this file.
1 /*
2  * httpsessionssettings.h
3  *
4  * Created on: Nov 13, 2017
5  * Author: f4exb
6  */
7 
8 #ifndef HTTPSERVER_HTTPSESSIONSSETTINGS_H_
9 #define HTTPSERVER_HTTPSESSIONSSETTINGS_H_
10 
11 namespace qtwebapp {
12 
14 {
16  QString cookieName;
17  QString cookiePath;
18  QString cookieComment;
19  QString cookieDomain;
20 
23  }
24 
26  {
27  expirationTime = 3600000;
28  cookieName = "sessionid";
29  cookiePath = "";
30  cookieComment = "";
31  cookieDomain = "";
32  }
33 };
34 
35 } // end of namespace
36 
37 
38 
39 
40 #endif /* HTTPSERVER_HTTPSESSIONSSETTINGS_H_ */