jmuehlner commented on code in PR #455:
URL: https://github.com/apache/guacamole-server/pull/455#discussion_r1306219392
##########
src/guacd/daemon.c:
##########
@@ -504,6 +555,26 @@ int main(int argc, char* argv[]) {
}
+ /* Stop all connections */
+ if (map != NULL) {
+
+ guacd_proc_map_foreach(map, stop_process_callback, NULL);
+
+ /*
+ * FIXME: Clean up the proc map. This is not as straightforward as it
Review Comment:
The daemon was never really set up to perform cleanup, and it's less easy to
get everything cleaned up than I had hoped. In the service of avoiding further
complexity ballooning, I'm going to leave this for future improvement.
The map was never cleaned up before either, so at least this isn't making
things worse than it used to be.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]