Github user necouchman commented on a diff in the pull request:
https://github.com/apache/guacamole-server/pull/205#discussion_r244047068
--- Diff: src/guacd/conf-file.h ---
@@ -24,6 +24,11 @@
#include "conf.h"
+/**
+ * Creates a new configuration structure, filled with default settings.
+ */
+guacd_config* guacd_conf_create();
+
--- End diff --
Even though it's independent of the parsing, it still seems like it's
related to pulling values from the files, so I'm fine with it staying where it
is.
---