summaryrefslogtreecommitdiffstats
path: root/src/server
Commit message (Collapse)AuthorAgeFilesLines
* [*] Better error handling and messagingHEADmasterSimon Rettberg2023-03-132-18/+30
| | | | | Server now properly sends a connection termination reason to the client, which will log it to the console, for better debugging.
* Add more debug output to discovery partSimon Rettberg2023-03-072-5/+11
|
* [server] Fix command lineSimon Rettberg2023-02-161-1/+1
|
* [pvsmgr] Fix app-exit in --manager-only mode on Qt5.15Simon Rettberg2023-01-203-8/+11
| | | | | | In newer Qt versions, calling QApplication::exit() in the App constructor deadlocks the application. Set a flag instead and exit from main()
* Add a few hacks to make it compile on Qt 5.12 againSimon Rettberg2022-10-312-1/+3
|
* Clean up and modernize codeSimon Rettberg2022-10-3025-533/+452Star
| | | | | | | - 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
* Modernize cmake file and project structure a bitSimon Rettberg2022-10-308-17/+699
|
* Fix Qt fixv29r2v29r1Simon Rettberg2020-10-011-1/+1
|
* Newer versions of Qt do not accept 1024bit RSA keysSimon Rettberg2020-09-112-3/+3
| | | | | ... and helpfully do not print any kind of warning or error. Instead, accepting SSL connections just silently fails. Isn't this wonderful?
* [server] Periodically deactivate xscreensaver when clients are connectedv26Simon Rettberg2019-11-181-4/+15
|
* [server] Fix confirmation dialog when loading room layoutSimon Rettberg2019-07-221-4/+5
|
* [server] Fix adding/removing students to active projectionSimon Rettberg2018-11-151-9/+25
| | | | | | VNC server/client was not always properly started or stopped when adding/removing students to currently running projection with tutor as source.
* [server] Use MSecs not Secs so we don't require Qt 5.8+Simon Rettberg2018-09-281-2/+2
|
* [server] Pimp help windowSimon Rettberg2018-09-032-15/+43
| | | | Closes #3409
* [*] Add log message if loading translations failsSimon Rettberg2018-09-031-4/+10
|
* [server] Fix snap to grid for call with ignored frame paramSimon Rettberg2018-08-032-18/+3Star
|
* [server] Get rid of broken help window ui, generate programaticallySimon Rettberg2018-08-033-35/+40
|
* [server] Show drop position when moving frame aroundSimon Rettberg2018-08-024-33/+58
|
* Revert "[shared/server] define preferred styles and enable it if supported"Simon Rettberg2018-08-021-10/+0Star
| | | | | | | Pointless code!? Makes theme look ugly with Qt5 at least with no apparent advantage whatsoever. This reverts commit 7cf83493fdaca88fd3dbc736d5ca9d86dd7f9e83.
* [server] Fix client frame placement bugSimon Rettberg2018-08-021-1/+1
| | | | | Bug was introduced in commit:9ba63d1460 through missing parenthesis in macro.
* [server] Fix current VNC projection source check, fix button enableSimon Rettberg2018-08-022-7/+6Star
| | | | | | | | | * streaming from/to tutor was enabled even if selected client was offline * VNC client start command was swallowed even if no projection was running (just matched the last projection source) * Screen wasn't unlocked again when switching from LockedUnicast to Unicast
* Remove ugly comment separator lines above functionsSimon Rettberg2018-08-023-53/+39Star
|
* [server] Don't restart VNC viewer if target stays the sameSimon Rettberg2018-08-022-8/+12
|
* [server] Improved disabling of toolbar buttons depending on contextSimon Rettberg2018-08-012-77/+56Star
| | | | | | | | | * Disable tutor to student / student to tutor if no tutor online * Disable above buttons if selected frame is tutor * Disable lock single client button if selected client is tutor ... And many more Closes #3399
* [server] Fix message box when deleting clientSimon Rettberg2018-08-011-3/+3
|
* [server] Allow setting offline client as tutorSimon Rettberg2018-08-011-4/+1Star
| | | | Closes #3397
* [server] Fix exit button confirmation MessageBoxSimon Rettberg2018-08-011-3/+5
| | | | | Just showing a single button called "Ok" is rather pointless... Closes #3398
* [server] Deduplicate code for student -> tutor streamingSimon Rettberg2018-08-013-63/+52Star
|
* [SERVER] Fix locking when locked unicast is current modeSimon Rettberg2018-07-312-6/+11
| | | | Streaming source wasn't locked properly before
* [*] Convert old C-Style castsSimon Rettberg2018-07-266-18/+18
| | | | | Primitive types now use type(x) instead of (type)x, pointers should use appropriate long versions
* [server] Cleanup and simplify SslServerSimon Rettberg2018-07-242-84/+38Star
|
* Update code style, fix compiler warningsSimon Rettberg2018-07-2410-97/+100
| | | | | | - 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
* [server] Fix logic errorSimon Rettberg2018-07-241-1/+1
|
* [server] Resize thumbs server side on mismatchSimon Rettberg2018-07-205-33/+40
| | | | | | | | | | The server requests the appropriate size thumbnail from the client so no bandwidth will be wasted. However, due to privacy concerns, the client might actually send a thumb that's smaller than requested, resulting in a tiny thumbnail on the server with huge gray borders. The server will now scale up the image in those cases. We'd actually also scale the image down now if it were too large, but this doesn't happen under normal circumstances.
* [server] Fix: Checking for Ok on a Yes/No question ...Simon Rettberg2018-07-201-1/+1
|
* [server] Offer deleting temp. clients on session name changeSimon Rettberg2018-07-194-54/+40Star
| | | | | | | If the user changes the session name, we now ask whether to disconnect and delete all clients that just connected via session name and don't belong to the currently loaded room layout.
* [server] SessionNameWindow: Set focus to text box on openSimon Rettberg2018-07-191-0/+1
|
* [server] Don't do unnecessary lock resets on mode changeSimon Rettberg2018-07-182-21/+14Star
|
* [server] Minor cleanups (naming, checks)Simon Rettberg2018-07-132-28/+26Star
|
* [server] Unconditionally disable vnc server if no clients leftSimon Rettberg2018-07-121-2/+2
|
* [server] Fix (=implement) tracking of client's projection sourceSimon Rettberg2018-07-121-1/+2
| | | | | | We never stored the current projection source id in the according field of class Client, breaking intended functionality when cancelling projection.
* [server] Add button to lock/unlock single clientSimon Rettberg2018-07-123-5/+38
|
* [server] Handle client disconnectsSteffen Ritter2018-06-122-12/+6Star
|
* Fix translations on Qt5Simon Rettberg2017-12-051-4/+2Star
|
* [server] Init qrand before creating main window, so session id is randomSimon Rettberg2017-12-011-2/+1Star
|
* Fix connection problems qith Qt5 (again)Simon Rettberg2017-12-011-1/+1
|
* Fix SSL on Qt5Simon Rettberg2017-11-166-20/+45
|
* port to qt5Jonathan Bauer2017-11-157-6/+6
| | | | | | | * got rid of the Win32/X11 differentiation * due to QT5, additional packages are needed to compile ** libqt5x11extras5-dev ** libqt5svg5-dev
* [server] Only block screen saver from running when first client connectsSimon Rettberg2017-03-201-1/+5
| | | | | | | The screen saver lock is recursive, so if we call it for every client that connects, but only unlock once when the last client disconnects, the screen saver will be blocked forever. Fixes #3083
* [server] Prevent screen standby while clients are connectedSimon Rettberg2017-03-064-16/+128
|