summaryrefslogtreecommitdiffstats
path: root/src/server/net/sslserver.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Clean up and modernize codeSimon Rettberg2022-10-301-5/+9
| | | | | | | - static "new-style" signal->slot connections - Fix a lot of things Clang-Tidy complained about - Move includes to .cpp files and use forward decls in .h - Don't use <QtWidgets> and <QtCore>, but specific includes instead
* Newer versions of Qt do not accept 1024bit RSA keysSimon Rettberg2020-09-111-1/+1
| | | | | ... and helpfully do not print any kind of warning or error. Instead, accepting SSL connections just silently fails. Isn't this wonderful?
* [server] Use MSecs not Secs so we don't require Qt 5.8+Simon Rettberg2018-09-281-2/+2
|
* [*] Convert old C-Style castsSimon Rettberg2018-07-261-1/+1
| | | | | Primitive types now use type(x) instead of (type)x, pointers should use appropriate long versions
* [server] Cleanup and simplify SslServerSimon Rettberg2018-07-241-70/+32Star
|
* Update code style, fix compiler warningsSimon Rettberg2018-07-241-5/+5
| | | | | | - Use nullptr instead of NULL for better warnings in case of mistakes - Get rid of VLAs which are not in C++11 actually - Fix implicit signed <-> unsigned mismatches by adding checks and casts
* Fix SSL on Qt5Simon Rettberg2017-11-161-8/+31
|
* [server] Bail out if certificates cannot be createdSimon Rettberg2017-03-061-3/+11
|
* Increase compiler warnings, fix a lot of those instancesSimon Rettberg2016-11-151-2/+2
| | | | | | - Add explicit casts - Comment out unused params - Remove ignored const return types
* [server] Show IP address in room layout right after loading itSimon Rettberg2016-10-281-2/+2
|
* astyle.Christian Klinger2016-09-291-17/+8Star
|
* upgraded from SSLv3 to TLS1.0Christian Klinger2016-05-091-1/+1
| | | | This fixes #2781 where a server running on debian didn't accept any connections anymore.
* Removed some unnecessary qDebug comments.Björn Hagemeister2014-06-021-1/+0Star
|
* Several changes:Björn Hagemeister2014-05-261-0/+1
| | | | | | Fixed segmentaion fault, which occured after streaming to all clients. Added sessionName as command line argument to client, so that it connects immediatly after running to given sessionName. If pvsclient shows connected status also display IP-Adress of the running pvsmanager.
* Adding comments for each method in the .cpp files and class definition in ↵Björn Hagemeister2014-04-281-0/+4
| | | | the .h files.
* Initial commitsr2013-02-041-0/+113